| Symbol Name | Superscript Zero |
| Unicode Version | 1.1 |
| Unicode | U+2070 |
| Unicode block | |
| General category | Other Number (No) |
| CSS Code | \2070 |
| Hex Code | 0x2070 |
| HTML Code | ⁰ |
| LaTeX | ^{0} |
| Symbol | ⁰ |
| URL encode (UTF-8 percent) | %E2%81%B0 |
| Spoken / screen reader name | Superscript Zero |
| UTF-8 | E2 81 B0 |
| UTF-16 | 2070 |
| UTF-32 | 00002070 |
1\documentclass{article}2\usepackage{pifont}3^{0}4\end{document}You can type the superscript zero symbol on most modern devices with the help of following methods:
Alt + 8304 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "superscript zero", or use Unicode Hex Input with 2070.
Ctrl + Shift + U, type 2070, 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-zero::before { content: "\2070"; }1<span>⁰</span>Superscript Zero symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u2070' or String.fromCodePoint(0x2070) |
| Python | '\N{SUPERSCRIPT ZERO}' or chr(8304) |
| Rust | '\u{2070}' |
| C / C++ | UTF-8 source or wchar_t with U+2070 |
| Go | string(rune(0x2070)) |
| Ruby | "\u2070" |