| Nome del simbolo | Subscript One |
| Versione Unicode | 1.1 |
| Unicode | U+2081 |
| Blocco Unicode | |
| Categoria generale | Other Number (No) |
| Codice CSS | \2081 |
| Codice esadecimale | 0x2081 |
| Codice HTML | ₁ |
| LaTeX | _{1} |
| Simbolo | ₁ |
| Codifica URL (percentuale UTF-8) | %E2%82%81 |
| Nome parlato / screen reader | Subscript One |
| UTF-8 | E2 82 81 |
| UTF-16 | 2081 |
| UTF-32 | 00002081 |
1\documentclass{article}2\usepackage{pifont}3_{1}4\end{document}Puoi digitare il simbolo subscript one sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 8321 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "subscript one", or use Unicode Hex Input with 2081.
Ctrl + Shift + U, type 2081, 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-one::before { content: "\2081"; }1<span>₁</span>La rappresentazione del simbolo Subscript One nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u2081' or String.fromCodePoint(0x2081) |
| Python | '\N{SUBSCRIPT ONE}' or chr(8321) |
| Rust | '\u{2081}' |
| C / C++ | UTF-8 source or wchar_t with U+2081 |
| Go | string(rune(0x2081)) |
| Ruby | "\u2081" |