HTML Entity for Subscript Nine (₉)

What You'll Learn
How to display the subscript nine (₉) in HTML using hex, decimal, and CSS entity methods. This character lives in the Superscripts and Subscripts Unicode block and is commonly used for chemical formulas, mathematical expressions, molecular notation, and technical content.
₉ has no named HTML entity, so you’ll use numeric references (₉ or ₉) or a CSS escape (\2089 in content).
⚡ Quick Reference — ₉ Entity
U+2089Superscripts & Subscripts block
₉Hexadecimal reference
₉Decimal reference
\2089Use in CSS content
Name Value
──────────── ──────────
Unicode U+2089
Hex code ₉
HTML code ₉
Named entity (none)
CSS code \2089Complete 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: "\2089";
}
</style>
</head>
<body>
<p>Subscript Nine using Hexa Decimal: ₉</p>
<p>Subscript Nine using HTML Code: ₉</p>
<p id="point">Subscript Nine using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The character ₉ (U+2089) is supported in all modern browsers. Rendering depends on font support for the Superscripts and Subscripts block, so include a sensible fallback font stack:
👀 Live Preview
See ₉ rendered in a few practical contexts:
<sub> (e.g., H2O).🧠 How It Works
Hexadecimal Code
₉ references Unicode 2089 in hexadecimal to produce the glyph ₉ in HTML.
Decimal HTML Code
₉ uses the decimal code point value 8329 to render the same character.
CSS Entity (Escape)
\2089 is used in CSS (often in content) to generate ₉ in pseudo-elements like ::before and ::after.
Same visual result
All methods render ₉. Unicode is U+2089 (Superscripts and Subscripts). There is no named HTML entity for this character.
Use Cases
The subscript nine (₉) commonly appears in the following scenarios:
Molecular formulas and carbon counts (e.g., C₉ in chain or ring notation).
Indices and sequences like x₉, a₉ in notation.
Compact subscript markers in text-heavy content.
Coefficients or terms in indexed series (e.g., coefficient a₉).
Textbooks and tutorials with simple subscripts.
Use the glyph when you need a single subscript digit.
💡 Best Practices
Do
- Use
<sub>when the subscript is a word or phrase - Use numeric references (
₉/₉) for portability - Keep formula formatting consistent across the page
- Verify font support for Superscripts/Subscripts when important
- Consider MathML/MathJax for complex equations
Don’t
- Mix Unicode subscripts with random
<sub>usage without reason - Assume every font renders ₉ at the same size and position
- Use the CSS escape inside HTML content
- Let line-height collapse around formulas (adjust if needed)
- Use ₉ where a normal “9” is intended
Key Takeaways
Use numeric references in HTML
₉ ₉For CSS, use the escape in the content property
\2089Unicode U+2089 is in Superscripts/Subscripts
Useful for formulas and indices like C₉ and x₉
There is no named HTML entity for ₉
❓ Frequently Asked Questions
₉ (hex) or ₉ (decimal) in HTML. In CSS, use \2089 in the content property. All render ₉.U+2089 (hex 2089, decimal 8329). It’s part of the Superscripts and Subscripts Unicode block.₉ or ₉) are used directly in markup. The CSS escape \2089 is used in stylesheets (often in content on pseudo-elements). Same glyph, different layer.₉ or ₉ instead of a named entity.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.
8 people found this page helpful
