| Nombre del símbolo | Circled Number Ten |
| Versión Unicode | 1.1 |
| Unicode | U+2469 |
| Bloque Unicode | |
| Categoría general | Other Number (No) |
| Código CSS | \2469 |
| Código hexadecimal | 0x2469 |
| Código HTML | ⑩ |
| LaTeX | {⑩} |
| Símbolo | ⑩ |
| Codificación URL (porcentaje UTF-8) | %E2%91%A9 |
| Nombre oral / lector de pantalla | Circled Number Ten |
| UTF-8 | E2 91 A9 |
| UTF-16 | 2469 |
| UTF-32 | 00002469 |
1\documentclass{article}2\usepackage{pifont}3{⑩}4\end{document}Puedes escribir el símbolo circled number ten en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 9321 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "circled number ten", or use Unicode Hex Input with 2469.
Ctrl + Shift + U, type 2469, 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-number-ten::before { content: "\2469"; }1<span>⑩</span>La representación del símbolo Circled Number Ten en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u2469' or String.fromCodePoint(0x2469) |
| Python | '\N{CIRCLED NUMBER TEN}' or chr(9321) |
| Rust | '\u{2469}' |
| C / C++ | UTF-8 source or wchar_t with U+2469 |
| Go | string(rune(0x2469)) |
| Ruby | "\u2469" |