| Symbol Name | Circled Digit Zero |
| Unicode Version | 1.1 |
| Unicode | U+24EA |
| Unicode block | |
| General category | Other Number (No) |
| CSS Code | \24EA |
| Hex Code | 0x24EA |
| HTML Code | ⓪ |
| LaTeX | {⓪} |
| Symbol | ⓪ |
| URL encode (UTF-8 percent) | %E2%93%AA |
| Spoken / screen reader name | Circled Digit Zero |
| UTF-8 | E2 93 AA |
| UTF-16 | 24EA |
| UTF-32 | 000024EA |
1\documentclass{article}2\usepackage{pifont}3{⓪}4\end{document}You can type the circled digit zero symbol on most modern devices with the help of following methods:
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>Circled Digit Zero symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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" |