Superscript Zero

Shortcodes

Copy useful codes for superscript zero symbol ⁰ to use in websites, apps, blogs, and docs.

Unicode
U+2070
HTML Code
⁰
HEX Code
⁰
CSS Code
\2070
JS/JSON
\u2070
Unix/C/PHP/JAVA
0x2070
URL-encode
%E2%81%B0

Customize Superscript Zero

Customize ⁰, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Superscript Zero Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⁰</span>
HTML Code:
<span>&#8304;</span>
HEX Code:
<span>&#x2070;</span>

Add with CSS

.superscript-zero::before {
  content: '\\2070';
}

Set it in JavaScript

document.querySelector('.superscript-zero').textContent = '⁰';
copied