| 記号名 | Subscript Nine |
| Unicodeバージョン | 1.1 |
| Unicode | U+2089 |
| Unicodeブロック | |
| 一般カテゴリ | Other Number (No) |
| CSSコード | \2089 |
| 16進コード | 0x2089 |
| HTMLコード | ₉ |
| LaTeX | _{9} |
| 記号 | ₉ |
| URLエンコード(UTF-8パーセント) | %E2%82%89 |
| 読み上げ名 / スクリーンリーダー | Subscript Nine |
| UTF-8 | E2 82 89 |
| UTF-16 | 2089 |
| UTF-32 | 00002089 |
1\documentclass{article}2\usepackage{pifont}3_{9}4\end{document}以下の方法でほとんどの最新デバイスでsubscript nine記号を入力できます:
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記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| 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" |