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