| 記号名 | Subscript Two |
| Unicodeバージョン | 1.1 |
| Unicode | U+2082 |
| Unicodeブロック | |
| 一般カテゴリ | Other Number (No) |
| CSSコード | \2082 |
| 16進コード | 0x2082 |
| HTMLコード | ₂ |
| LaTeX | _{2} |
| 記号 | ₂ |
| URLエンコード(UTF-8パーセント) | %E2%82%82 |
| 読み上げ名 / スクリーンリーダー | Subscript Two |
| UTF-8 | E2 82 82 |
| UTF-16 | 2082 |
| UTF-32 | 00002082 |
1\documentclass{article}2\usepackage{pifont}3_{2}4\end{document}以下の方法でほとんどの最新デバイスでsubscript two記号を入力できます:
Alt + 8322 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "subscript two", or use Unicode Hex Input with 2082.
Ctrl + Shift + U, type 2082, 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-two::before { content: "\2082"; }1<span>₂</span>各プログラミング言語におけるSubscript Two記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u2082' or String.fromCodePoint(0x2082) |
| Python | '\N{SUBSCRIPT TWO}' or chr(8322) |
| Rust | '\u{2082}' |
| C / C++ | UTF-8 source or wchar_t with U+2082 |
| Go | string(rune(0x2082)) |
| Ruby | "\u2082" |