| Nombre del símbolo | Circled Digit Zero |
| Versión Unicode | 1.1 |
| Unicode | U+24EA |
| Bloque Unicode | |
| Categoría general | Other Number (No) |
| Código CSS | \24EA |
| Código hexadecimal | 0x24EA |
| Código HTML | ⓪ |
| LaTeX | {⓪} |
| Símbolo | ⓪ |
| Codificación URL (porcentaje UTF-8) | %E2%93%AA |
| Nombre oral / lector de pantalla | Circled Digit Zero |
| UTF-8 | E2 93 AA |
| UTF-16 | 24EA |
| UTF-32 | 000024EA |
1\documentclass{article}2\usepackage{pifont}3{⓪}4\end{document}Puedes escribir el símbolo circled digit zero en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Circled Digit Zero en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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" |