HTML Entity for Roman Numeral Ten (Ⅹ)

What You'll Learn
How to display Roman Numeral Ten (Ⅹ) in HTML using numeric entities (hex and decimal) and a CSS escape. This character is commonly used for chapter numbering, outlines, and typography where true roman numeral glyphs are preferred.
The character is part of the Number Forms Unicode block and is referenced as U+2169.
⚡ Quick Reference — Roman Numeral Ten (Ⅹ)
U+2169Number Forms block
ⅩHexadecimal reference
ⅩDecimal reference
—No named entity available
Name Value
──────────── ──────────
Unicode U+2169
Hex code Ⅹ
HTML code Ⅹ
Named entity —
CSS code \2169Complete 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: "\2169";
}
</style>
</head>
<body>
<p>Roman Ten using Hexa Decimal: Ⅹ</p>
<p>Roman Ten using HTML Code: Ⅹ</p>
<p id="point">Roman Ten using CSS Entity: </p>
</body>
</html>🌐 Browser Support
This Unicode character (Ⅹ) and its numeric entities are supported across modern browsers (typographic appearance may vary by font):
👀 Live Preview
See Ⅹ used in a few common outline / chapter numbering patterns:
🧠 How It Works
Hexadecimal Code
Ⅹ uses the Unicode hexadecimal value 2169 to render Ⅹ.
Decimal HTML Code
Ⅹ uses the decimal Unicode value 8553 for the same character.
CSS Entity
\2169 is a CSS escape typically used in the content property of pseudo-elements.
Same visual result
All methods render Ⅹ. Unicode U+2169 belongs to Number Forms.
Use Cases
Roman Numeral Ten (Ⅹ) is commonly used in:
Main sections and primary hierarchy markers.
Primary list levels using uppercase roman numerals.
Chapters, volumes, and citation conventions.
Parts/volumes labeled with roman numerals.
When you need true roman numeral glyphs.
Formats like Ⅹ.A.1 in technical docs.
💡 Best Practices
Do
- Use roman numeral glyphs where convention expects them (chapters, outlines)
- Keep one numeric entity style (hex or decimal) consistent in a document
- Consider accessibility: use proper structure (
<ol>, headings) for outlines - Test readability—Ⅹ can be confused with the letter
Xin some fonts
Don’t
- Assume there is a named entity for Ⅹ (there isn’t)
- Use CSS escapes inside HTML markup (use them in stylesheets only)
- Use roman numerals for normal UI where “10” is clearer
- Ignore font support for Number Forms in your UI
Key Takeaways
Ⅹ is Unicode U+2169 (Number Forms)
U+2169 Ⅹ ⅩFor CSS stylesheets, use the escape in content
\2169There is no named HTML entity for Ⅹ
In some fonts, Ⅹ can resemble the letter “X”—test for clarity
❓ Frequently Asked Questions
Ⅹ (hex), Ⅹ (decimal), or \2169 in CSS content. All render Ⅹ.U+2169 (hex 2169, decimal 8553) in Number Forms.\2169 in the content property of ::before/::after.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.
8 people found this page helpful
