HTML Entity for Subscript One (₁)

What You'll Learn
How to display Subscript One (₁) in HTML using Unicode entity methods: hex, decimal, and a CSS escape. This character is widely used in chemical formulas, math variables (like x₁), and scientific notation.
The character is part of the Superscripts and Subscripts Unicode block and is referenced as U+2081.
⚡ Quick Reference — Subscript One (₁)
U+2081Superscripts and Subscripts block
₁Hexadecimal reference
₁Decimal reference
—No named entity available
Name Value
──────────── ──────────
Unicode U+2081
Hex code ₁
HTML code ₁
Named entity —
CSS code \2081Complete HTML Example
This example renders ₁ using the hex entity, decimal entity, and a CSS escape on a pseudo-element:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2081";
}
</style>
</head>
<body>
<p>Subscript One using Hexa Decimal: ₁</p>
<p>Subscript One using HTML Code: ₁</p>
<p id="point">Subscript One using CSS Entity: </p>
</body>
</html>🌐 Browser Support
Subscript One (₁) and its numeric entities are supported in modern browsers (rendering can vary slightly by font):
👀 Live Preview
See ₁ used in a few formula-style contexts:
<sub> tag)🧠 How It Works
Hexadecimal Code
₁ uses the Unicode hexadecimal value 2081 to display ₁.
Decimal HTML Code
₁ uses the decimal Unicode value 8321 for the same character.
CSS Entity
\2081 is a CSS escape typically used in the content property of pseudo-elements.
Semantic Option
If you want semantic subscript formatting (not a specific glyph), use <sub>1</sub> to render 1 as a subscript.
Same visual result
The entity forms display ₁. Unicode U+2081 sits in the Superscripts and Subscripts block.
Use Cases
Subscript One (₁) is commonly used in:
Indices and notations in chemistry content.
Sequences and variables such as x₁ and a₁.
Indices, parameters, and notation in technical writing.
Design-driven footnote/reference markers.
Specs and docs that include indexed terms like v₁.
💡 Best Practices
Do
- Use
₁or₁consistently across a page - Prefer
<sub>when you want semantic formatting for arbitrary text - Verify font support for subscript digits on your target devices
- Keep formulas readable by pairing notation with explanations where needed
Don’t
- Assume there is a named entity for ₁ (there isn’t)
- Mix CSS escapes into HTML content (use them in stylesheets only)
- Overuse subscript glyphs when plain text is clearer
- Forget to test line-height and spacing in dense formulas
Key Takeaways
₁ is Unicode U+2081
U+2081 ₁ ₁Use CSS escape in stylesheets via content
\2081There is no named HTML entity for ₁
Use <sub>1</sub> when you need semantic subscript formatting
❓ Frequently Asked Questions
₁ (hex), ₁ (decimal), or \2081 in CSS content. All render ₁.U+2081 (hex 2081, decimal 8321) in the Superscripts and Subscripts block.₁ or ₁.<sub> for semantic subscript formatting that applies to any text.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.
8 people found this page helpful
