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