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