| Nome del simbolo | Small Asterisk |
| Versione Unicode | 1.1 |
| Unicode | U+FE61 |
| Blocco Unicode | |
| Categoria generale | Other Punctuation (Po) |
| Codice CSS | \FE61 |
| Codice esadecimale | 0xFE61 |
| Codice HTML | ﹡ |
| LaTeX | \text{SMALLASTERISK} |
| Simbolo | ﹡ |
| Codifica URL (percentuale UTF-8) | %EF%B9%A1 |
| Nome parlato / screen reader | Small Asterisk |
| UTF-8 | EF B9 A1 |
| UTF-16 | FE61 |
| UTF-32 | 0000FE61 |
1\documentclass{article}2\usepackage{pifont}3\text{SMALLASTERISK}4\end{document}Puoi digitare il simbolo small asterisk sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 65121 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "small asterisk", or use Unicode Hex Input with FE61.
Ctrl + Shift + U, type fe61, 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.small-asterisk::before { content: "\FE61"; }1<span>﹡</span>La rappresentazione del simbolo Small Asterisk nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\uFE61' or String.fromCodePoint(65121) |
| Python | '\N{SMALL ASTERISK}' or chr(65121) |
| Rust | '\u{FE61}' |
| C / C++ | UTF-8 source or wchar_t with U+FE61 |
| Go | string(rune(0xFE61)) |
| Ruby | "\u{FE61}" |