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