| Nom du symbole | Circled Digit Zero |
| Version Unicode | 1.1 |
| Unicode | U+24EA |
| Bloc Unicode | |
| Catégorie générale | Other Number (No) |
| Code CSS | \24EA |
| Code hexadécimal | 0x24EA |
| Code HTML | ⓪ |
| LaTeX | {⓪} |
| Symbole | ⓪ |
| Encodage URL (pourcent UTF-8) | %E2%93%AA |
| Nom oral / lecteur d’écran | Circled Digit Zero |
| UTF-8 | E2 93 AA |
| UTF-16 | 24EA |
| UTF-32 | 000024EA |
1\documentclass{article}2\usepackage{pifont}3{⓪}4\end{document}Vous pouvez saisir le symbole circled digit zero sur la plupart des appareils modernes avec les méthodes suivantes :
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 représentation du symbole Circled Digit Zero dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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" |