HTML Entity for Subscript Zero (₀)

What You'll Learn
How to display Subscript Zero (₀) in HTML using the Unicode-based entity methods: hex, decimal, and a CSS escape. This symbol is common in math and scientific writing such as x₀ (initial value), indices, and notation.
The character belongs to the Subscripts and Superscripts Unicode block and is referenced as U+2080.
⚡ Quick Reference — Subscript Zero Entity
U+2080Subscripts and Superscripts block
₀Hexadecimal reference
₀Decimal reference
—No named entity available
Name Value
──────────── ──────────
Unicode U+2080
Hex code ₀
HTML code ₀
Named entity —
CSS code \2080Complete HTML Example
This example renders Subscript Zero (₀) using the hex entity, decimal entity, and a CSS escape on a pseudo-element:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2080";
}
</style>
</head>
<body>
<p>Subscript Zero using Hexa Decimal: ₀</p>
<p>Subscript Zero using HTML Code: ₀</p>
<p id="point">Subscript Zero using CSS Entity: </p>
</body>
</html>🌐 Browser Support
Subscript Zero (₀) and its numeric entities are supported in all modern browsers:
👀 Live Preview
Here are a few real-world ways Subscript Zero (₀) appears in content:
<sub> tag)🧠 How It Works
Hexadecimal Code
₀ uses the Unicode hexadecimal value 2080 to render Subscript Zero.
Decimal HTML Code
₀ uses the decimal Unicode value 8320 for the same character.
CSS Entity
\2080 is a CSS escape used in stylesheets (typically inside content for ::before/::after).
Semantic Option
If you want semantic subscript formatting (not a specific glyph), use <sub>0</sub> to render 0 as a subscript.
Same visual result
The entity forms all display ₀. Unicode U+2080 sits in the Subscripts and Superscripts block.
Use Cases
Subscript Zero (₀) is commonly used in:
Indices and initial values (e.g. x₀, a₀).
Equations, derivations, and textbook-style notation.
Specs and API docs that use subscripted symbols in prose.
Tutorials and examples where notation must match printed math.
Numbered references or notation that requires a subscript glyph.
💡 Best Practices
Do
- Use
₀or₀consistently across a page - Prefer
<sub>when you want semantic formatting for arbitrary text - Test rendering with your chosen font (some fonts have weak subscript glyphs)
- Use plain-text explanations alongside notation when teaching
Don’t
- Assume there is a named entity for ₀ (there isn’t)
- Mix CSS escapes into HTML markup (use them in stylesheets only)
- Use subscript glyphs when you actually need semantic
<sub>structure - Rely on subscripts alone to convey meaning without context
Key Takeaways
Subscript Zero is Unicode U+2080
U+2080 ₀ ₀Use CSS escape in stylesheets via content
\2080There is no named HTML entity for ₀
Use <sub>0</sub> when you want semantic subscript formatting
❓ Frequently Asked Questions
₀ (hex), ₀ (decimal), or \2080 in CSS content. All render ₀.U+2080 (hex 2080, decimal 8320) in the Subscripts and Superscripts block.₀ or ₀.<sub> when you want semantic subscript formatting for arbitrary text like x<sub>0</sub>.<sub> with CSS styling.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.
8 people found this page helpful
