| Symbol Name | Subscript Four |
| Unicode Version | 1.1 |
| Unicode | U+2084 |
| Unicode block | |
| General category | Other Number (No) |
| CSS Code | \2084 |
| Hex Code | 0x2084 |
| HTML Code | ₄ |
| LaTeX | _{4} |
| Symbol | ₄ |
| URL encode (UTF-8 percent) | %E2%82%84 |
| Spoken / screen reader name | Subscript Four |
| UTF-8 | E2 82 84 |
| UTF-16 | 2084 |
| UTF-32 | 00002084 |
1\documentclass{article}2\usepackage{pifont}3_{4}4\end{document}You can type the subscript four symbol on most modern devices with the help of following methods:
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 symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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" |