| Nome del simbolo | Circled Digit Zero |
| Versione Unicode | 1.1 |
| Unicode | U+24EA |
| Blocco Unicode | |
| Categoria generale | Other Number (No) |
| Codice CSS | \24EA |
| Codice esadecimale | 0x24EA |
| Codice HTML | ⓪ |
| LaTeX | {⓪} |
| Simbolo | ⓪ |
| Codifica URL (percentuale UTF-8) | %E2%93%AA |
| Nome parlato / screen reader | Circled Digit Zero |
| UTF-8 | E2 93 AA |
| UTF-16 | 24EA |
| UTF-32 | 000024EA |
1\documentclass{article}2\usepackage{pifont}3{⓪}4\end{document}Puoi digitare il simbolo circled digit zero sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 9450 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "circled digit zero", or use Unicode Hex Input with 24EA.
Ctrl + Shift + U, type 24ea, 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 enclosed numeral support.
1span.circled-digit-zero::before { content: "\24EA"; }1<span>⓪</span>La rappresentazione del simbolo Circled Digit Zero nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u24EA' or String.fromCodePoint(0x24EA) |
| Python | '\N{CIRCLED DIGIT ZERO}' or chr(9450) |
| Rust | '\u{24EA}' |
| C / C++ | UTF-8 source or wchar_t with U+24EA |
| Go | string(rune(0x24EA)) |
| Ruby | "\u24EA" |