| Symbol Name | Subscript Nine |
| Unicode Version | 1.1 |
| Unicode | U+2089 |
| Unicode block | |
| General category | Other Number (No) |
| CSS Code | \2089 |
| Hex Code | 0x2089 |
| HTML Code | ₉ |
| LaTeX | _{9} |
| Symbol | ₉ |
| URL encode (UTF-8 percent) | %E2%82%89 |
| Spoken / screen reader name | Subscript Nine |
| UTF-8 | E2 82 89 |
| UTF-16 | 2089 |
| UTF-32 | 00002089 |
1\documentclass{article}2\usepackage{pifont}3_{9}4\end{document}You can type the subscript nine symbol on most modern devices with the help of following methods:
Alt + 8329 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "subscript nine", or use Unicode Hex Input with 2089.
Ctrl + Shift + U, type 2089, 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.subscript-nine::before { content: "\2089"; }1<span>₉</span>Subscript Nine symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u2089' or String.fromCodePoint(0x2089) |
| Python | '\N{SUBSCRIPT NINE}' or chr(8329) |
| Rust | '\u{2089}' |
| C / C++ | UTF-8 source or wchar_t with U+2089 |
| Go | string(rune(0x2089)) |
| Ruby | "\u2089" |