HTML Entity for Lowercase Roman Numeral Ten (ⅹ)

What You'll Learn
How to display Lowercase Roman Numeral Ten (ⅹ) in HTML using numeric entities (hex and decimal) and a CSS escape. This character is commonly used for outlines, hierarchical numbering, and typography where true roman numeral glyphs are preferred.
The character is part of the Number Forms Unicode block and is referenced as U+2179.
⚡ Quick Reference — Lowercase Roman Numeral Ten (ⅹ)
U+2179Number Forms block
ⅹHexadecimal reference
ⅹDecimal reference
—No named entity available
Name Value
──────────── ──────────
Unicode U+2179
Hex code ⅹ
HTML code ⅹ
Named entity —
CSS code \2179Complete 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: "\2179";
}
</style>
</head>
<body>
<p>Lowercase Roman Ten using Hexa Decimal: ⅹ</p>
<p>Lowercase Roman Ten using HTML Code: ⅹ</p>
<p id="point">Lowercase 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 / numbering patterns:
🧠 How It Works
Hexadecimal Code
ⅹ uses the Unicode hexadecimal value 2179 to render ⅹ.
Decimal HTML Code
ⅹ uses the decimal Unicode value 8569 for the same character.
CSS Entity
\2179 is a CSS escape typically used in the content property of pseudo-elements.
Same visual result
All methods render ⅹ. Unicode U+2179 belongs to Number Forms.
Use Cases
Lowercase Roman Numeral Ten (ⅹ) is commonly used in:
Hierarchical numbering in docs and sections.
Secondary list levels using roman numerals.
Preface/front matter and citation conventions.
Stylistic labels like “Fig. ⅹ”.
When you need true roman numeral glyphs.
Numbering conventions that expect roman numerals.
💡 Best Practices
Do
- Use roman numeral glyphs where convention expects them (outlines, front matter)
- 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 text where “10” is clearer
- Ignore font support for Number Forms in your UI
Key Takeaways
ⅹ is Unicode U+2179 (Number Forms)
U+2179 ⅹ ⅹFor CSS stylesheets, use the escape in content
\2179There is no named HTML entity for ⅹ
In some fonts, ⅹ can resemble the letter “x”—test for clarity
❓ Frequently Asked Questions
ⅹ (hex), ⅹ (decimal), or \2179 in CSS content. All render ⅹ.U+2179 (hex 2179, decimal 8569) in Number Forms.\2179 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
