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