| Symbolname | Superscript One |
| Unicode-Version | 1.1 |
| Unicode | U+00B9 |
| Unicode-Block | |
| Allgemeine Kategorie | Other Number (No) |
| CSS-Code | \00B9 |
| Hexadezimalcode | 0x00B9 |
| HTML-Code | ¹ |
| LaTeX | ^{1} |
| Symbol | ¹ |
| URL-Kodierung (UTF-8-Prozent) | %C2%B9 |
| Ansagename (Screenreader) | Superscript One |
| UTF-8 | C2 B9 |
| UTF-16 | 00B9 |
| UTF-32 | 000000B9 |
1\documentclass{article}2\usepackage{pifont}3^{1}4\end{document}Sie können das Symbol superscript one auf den meisten modernen Geräten mit den folgenden Methoden eingeben:
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>Die Darstellung des Symbols Superscript One in verschiedenen Programmiersprachen finden Sie in der folgenden Tabelle:
| Sprache | Darstellung |
|---|---|
| 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" |