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