| Nome del simbolo | Subscript Four |
| Versione Unicode | 1.1 |
| Unicode | U+2084 |
| Blocco Unicode | |
| Categoria generale | Other Number (No) |
| Codice CSS | \2084 |
| Codice esadecimale | 0x2084 |
| Codice HTML | ₄ |
| LaTeX | _{4} |
| Simbolo | ₄ |
| Codifica URL (percentuale UTF-8) | %E2%82%84 |
| Nome parlato / screen reader | Subscript Four |
| UTF-8 | E2 82 84 |
| UTF-16 | 2084 |
| UTF-32 | 00002084 |
1\documentclass{article}2\usepackage{pifont}3_{4}4\end{document}Puoi digitare il simbolo subscript four sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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>La rappresentazione del simbolo Subscript Four nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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" |