| Nome del simbolo | Asterisk |
| Versione Unicode | 1.1 |
| Unicode | U+002A |
| Blocco Unicode | |
| Categoria generale | Other Punctuation (Po) |
| Codice CSS | \002A |
| Codice esadecimale | 0x002A |
| Codice HTML | * |
| LaTeX | * |
| Simbolo | * |
| Codifica URL (percentuale UTF-8) | %2A |
| Nome parlato / screen reader | Asterisk |
| UTF-8 | 2A |
| UTF-16 | 002A |
| UTF-32 | 0000002A |
1\documentclass{article}2\usepackage{pifont}3*4\end{document}Puoi digitare il simbolo asterisk sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 42 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "asterisk", or use Unicode Hex Input with 002A.
Ctrl + Shift + U, type 002a, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the symbol keyboard.
Paste from this page or use a keyboard with punctuation support.
1span.asterisk::before { content: "\002A"; }1<span>*</span>La rappresentazione del simbolo Asterisk nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u002A' or String.fromCodePoint(42) |
| Python | '\N{ASTERISK}' or chr(42) |
| Rust | '\u{002A}' |
| C / C++ | UTF-8 source or wchar_t with U+002A |
| Go | string(rune(0x002A)) |
| Ruby | "\u{002A}" |