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