| Symbolname | Superscript Two |
| Unicode-Version | 1.1 |
| Unicode | U+00B2 |
| Unicode-Block | |
| Allgemeine Kategorie | Other Number (No) |
| CSS-Code | \00B2 |
| Hexadezimalcode | 0x00B2 |
| HTML-Code | ² |
| LaTeX | ^{2} |
| Symbol | ² |
| URL-Kodierung (UTF-8-Prozent) | %C2%B2 |
| Ansagename (Screenreader) | Superscript Two |
| UTF-8 | C2 B2 |
| UTF-16 | 00B2 |
| UTF-32 | 000000B2 |
1\documentclass{article}2\usepackage{pifont}3^{2}4\end{document}Sie können das Symbol superscript two auf den meisten modernen Geräten mit den folgenden Methoden eingeben:
Alt + 178 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "superscript two", or use Unicode Hex Input with 00B2.
Ctrl + Shift + U, type 00b2, 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-two::before { content: "\00B2"; }1<span>²</span>Die Darstellung des Symbols Superscript Two in verschiedenen Programmiersprachen finden Sie in der folgenden Tabelle:
| Sprache | Darstellung |
|---|---|
| JavaScript / TypeScript | '\u00B2' or String.fromCodePoint(0x00B2) |
| Python | '\N{SUPERSCRIPT TWO}' or chr(178) |
| Rust | '\u{00B2}' |
| C / C++ | UTF-8 source or wchar_t with U+00B2 |
| Go | string(rune(0x00B2)) |
| Ruby | "\u00B2" |