Subscript Zero

Shortcodes

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

Unicode
U+2080
HTML Code
₀
HEX Code
₀
CSS Code
\2080
JS/JSON
\u2080
Unix/C/PHP/JAVA
0x2080
URL-encode
%E2%82%80

Customize Subscript Zero

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

  

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

Insert in HTML

1. Direct symbol:
<span>₀</span>
HTML Code:
<span>&#8320;</span>
HEX Code:
<span>&#x2080;</span>

Add with CSS

.subscript-zero::before {
  content: '\\2080';
}

Set it in JavaScript

document.querySelector('.subscript-zero').textContent = '₀';
copied