HTML Entity for Small Roman Numeral Nine (ⅸ)

What You'll Learn
How to display the small Roman numeral nine (ⅸ) in HTML using hex, decimal, and CSS entity methods. This character lives in the Number Forms Unicode block (equivalent to “ix”) and is commonly used for outlines, lists, academic formatting, legal numbering, and table-of-contents style numbering.
ⅸ has no named HTML entity, so you’ll use numeric references (ⅸ or ⅸ) or a CSS escape (\2178 in content).
⚡ Quick Reference — ⅸ Entity
U+2178Number Forms block
ⅸHexadecimal reference
ⅸDecimal reference
\2178Use in CSS content
Name Value
──────────── ──────────
Unicode U+2178
Hex code ⅸ
HTML code ⅸ
Named entity (none)
CSS code \2178Complete 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: "\2178";
}
</style>
</head>
<body>
<p>Small Roman Numeral Nine using Hexa Decimal: ⅸ</p>
<p>Small Roman Numeral Nine using HTML Code: ⅸ</p>
<p id="point">Small Roman Numeral Nine using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The character ⅸ (U+2178) is supported in all modern browsers. Rendering depends on font support for the Number Forms block, so include a sensible fallback font stack:
👀 Live Preview
See ⅸ rendered in a few practical contexts:
🧠 How It Works
Hexadecimal Code
ⅸ references Unicode 2178 in hexadecimal to produce the glyph ⅸ in HTML.
Decimal HTML Code
ⅸ uses the decimal code point value 8568 to render the same character.
CSS Entity (Escape)
\2178 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+2178 (Number Forms). There is no named HTML entity for this character.
Use Cases
The small Roman numeral nine (ⅸ) commonly appears in the following scenarios:
Hierarchical numbering in documents (i, ii, iii, ⅳ, ⅴ, ⅵ, ⅶ, ⅷ, ⅸ).
Front-matter numbering where lower-roman is conventional.
Clauses, sub-sections, and citations that use roman numerals.
Figure/Table labels like “Figure ⅸ”.
Volumes, parts, and stylistic numbering in books (e.g., Volume ⅸ).
Use a single glyph instead of plain “ix” for consistent roman spacing.
💡 Best Practices
Do
- Use
<ol style="list-style-type: lower-roman">when it’s truly a list - Use numeric references (
ⅸ/ⅸ) for portability - Verify font support for Number Forms if the glyph is critical
- Keep numbering style consistent within a section
- Pair with text context when needed (e.g., “Section ⅸ”)
Don’t
- Use ⅸ where plain Latin letters “ix” are semantically intended (they can render differently)
- Assume all fonts include Number Forms
- Mix uppercase and lowercase roman styles without reason
- Use the CSS escape inside HTML content
- Replace semantic list structure with decorative glyphs
Key Takeaways
Use numeric references in HTML
ⅸ ⅸFor CSS, use the escape in the content property
\2178Unicode U+2178 is in Number Forms
ⅸ is a single roman glyph, not two separate Latin letters
There is no named HTML entity for ⅸ
❓ Frequently Asked Questions
ⅸ (hex) or ⅸ (decimal) in HTML. In CSS, use \2178 in the content property. All render ⅸ.U+2178 (hex 2178, decimal 8568). It’s part of the Number Forms Unicode block.ⅸ or ⅸ) are used directly in markup. The CSS escape \2178 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
