HTML Entity for Subscript Three (₃)

What You'll Learn
How to display the subscript three (₃) in HTML using numeric character references (hex and decimal) and a CSS escape for generated content.
This character belongs to the Superscripts and Subscripts Unicode block and is commonly used for chemical formulas, math notation, molecular notation, and technical writing.
⚡ Quick Reference — ₃ Entity
U+2083Superscripts & Subscripts block
₃Hexadecimal reference
₃Decimal reference
—No named entity for ₃
Name Value
──────────── ──────────
Unicode U+2083
Hex code ₃
HTML code ₃
Named entity (none)
CSS code \2083Complete HTML Example
This example demonstrates ₃ using hexadecimal code, decimal HTML code, and a CSS content escape on a pseudo-element:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2083";
}
</style>
</head>
<body>
<p>Subscript Three using Hexa Decimal: ₃</p>
<p>Subscript Three using HTML Code: ₃</p>
<p id="point">Subscript Three using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The ₃ character (Unicode U+2083) is supported in all modern browsers. Rendering depends on font support for Superscripts and Subscripts (U+2070–U+209F).
👀 Live Preview
See ₃ rendered in common formula-style contexts:
🧠 How It Works
Hexadecimal Code
₃ references Unicode 2083 in hexadecimal to display ₃ in HTML.
Decimal HTML Code
₃ uses the decimal value 8323 for the same character.
CSS Entity
\2083 is used in CSS (typically in the content property) to generate ₃ in pseudo-elements.
Same visual result
All methods render ₃. Unicode U+2083 belongs to Superscripts and Subscripts.
Use Cases
Subscript three (₃) is commonly used in the following scenarios:
Molecular formulas and compound notation where subscripts indicate counts.
Indices, sequences, and variable subscripts like x₃ and a₃.
Reference markers in technical writing.
Notation like 10₃ for base-3 in educational content.
Single subscript digit without using <sub>.
💡 Best Practices
Do
- Use
₃or₃consistently (no named entity) - Use
<sub>for semantic subscript text, and ₃ for a single digit - Ensure fonts support Superscripts/Subscripts for consistent rendering
- Add context for accessibility when the meaning matters (e.g., “x sub 3”)
Don’t
- Use CSS escapes like
\2083directly in HTML content - Mix subscript entities with normal digits in the same formula inconsistently
- Assume every font renders ₃ identically
- Use ₃ for multi-character subscripts (use
<sub>)
Key Takeaways
Use numeric references to render ₃ in HTML
₃ ₃For CSS, use the escape in the content property
\2083Unicode U+2083 is part of Superscripts and Subscripts
There is no named HTML entity for ₃
❓ Frequently Asked Questions
₃ (hex) or ₃ (decimal) in HTML. In CSS, use \2083 in the content property. All methods render ₃.U+2083 (hex 2083, decimal 8323) in Superscripts and Subscripts.₃ or ₃.<sub> when you need semantic subscript text (multiple characters or words).₃ / ₃) go in markup. The CSS escape \2083 is used in stylesheets for pseudo-element content. Both render ₃.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.
8 people found this page helpful
