| Nom du symbole | Superscript One |
| Version Unicode | 1.1 |
| Unicode | U+00B9 |
| Bloc Unicode | |
| Catégorie générale | Other Number (No) |
| Code CSS | \00B9 |
| Code hexadécimal | 0x00B9 |
| Code HTML | ¹ |
| LaTeX | ^{1} |
| Symbole | ¹ |
| Encodage URL (pourcent UTF-8) | %C2%B9 |
| Nom oral / lecteur d’écran | Superscript One |
| UTF-8 | C2 B9 |
| UTF-16 | 00B9 |
| UTF-32 | 000000B9 |
1\documentclass{article}2\usepackage{pifont}3^{1}4\end{document}Vous pouvez saisir le symbole superscript one sur la plupart des appareils modernes avec les méthodes suivantes :
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 représentation du symbole Superscript One dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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" |