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