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