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