⁰ Superscript Zero
Unicode U+2070
Unicode & Shortcodes
U+2070⁰⁰\2070\u2070——E2 81 B02070%E2%81%B0Usage & Context
How to type Superscript Zero on Mac / Windows / Linux?
Windows: Use the Emoji Panel (Win + .) or copy/paste ⁰.
macOS: Use Character Viewer (Control + Command + Space) and search by name, or copy/paste.
Linux: Use the Character Map app or a Compose key sequence, then paste into your app.
How to type Superscript Zero on iOS / Android?
On iOS, long-press the globe/emoji key and search in the symbol picker, or paste the symbol.
On Android, open the symbols keyboard or use your app’s character panel, then paste.
How to add Superscript Zero in HTML?
Use an HTML entity, a decimal code, or a hex code. All of them render the same symbol in your markup.
<span>⁰ symbol</span>
<span>⁰ symbol</span>
<span>⁰ symbol</span>
How to add Superscript Zero in CSS?
CSS escapes work inside the content property. This is most useful with ::before or ::after.
.symbol::after {
content: "\2070";
}
<span class="symbol"></span>How to add Superscript Zero in JavaScript / JSON?
Use Unicode escapes in strings for a stable, language-neutral representation.
const symbol = "\u2070"; console.log(symbol);
{
"symbol": "\u2070"
}How to add Superscript Zero in URL / Query string?
Use percent-encoding. In JavaScript, use encodeURIComponent.
https://example.com?q=%E2%81%B0
How to add Superscript Zero in LaTeX / Markdown?
For math contexts, LaTeX or Markdown math blocks are the safest way to render this symbol.
\(x^{0}\)Inline math: $x^{0}$How to add Superscript Zero in Word / Google Docs / Excel?
In Word or Google Docs, go to Insert → Symbol (or Special Characters) and search the Unicode name.
In Word, you can type 2070 and press Alt+X to convert it.
=UNICHAR(8304)
Encoding notes
UTF-8 and UTF-16 byte sequences are listed above for developer tools, debugging, or data pipelines.