HTML Entity for Lowercase Roman Numeral Ten (ⅹ)

Beginner
⏱️ 5 min read
📚 Updated: Aug 2025
🎯 1 Code Example
Unicode U+2179

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 (ⅹ)

Unicode U+2179

Number Forms block

Hex Code ⅹ

Hexadecimal reference

HTML Code ⅹ

Decimal reference

Named Entity

No named entity available

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2179
Hex code       ⅹ
HTML code      ⅹ
Named entity   —
CSS code       \2179
1

Complete HTML Example

This example renders ⅹ using the hex entity, decimal entity, and a CSS escape on a pseudo-element:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2179";
  }
 </style>
</head>
<body>

<p>Lowercase Roman Ten using Hexa Decimal: &#x2179;</p>
<p>Lowercase Roman Ten using HTML Code: &#8569;</p>
<p id="point">Lowercase Roman Ten using CSS Entity: </p>

</body>
</html>
Try It Yourself

🌐 Browser Support

This Unicode character (ⅹ) and its numeric entities are supported across modern browsers (typographic appearance may vary by font):

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See ⅹ used in a few common outline / numbering patterns:

Outline marker Section ⅹ
Large glyph
Compared with letter x Roman: ⅹ | Letter: x
With entities Hex: ⅹ | Decimal: ⅹ

🧠 How It Works

1

Hexadecimal Code

&#x2179; uses the Unicode hexadecimal value 2179 to render ⅹ.

HTML markup
2

Decimal HTML Code

&#8569; uses the decimal Unicode value 8569 for the same character.

HTML markup
3

CSS Entity

\2179 is a CSS escape typically used in the content property of pseudo-elements.

CSS stylesheet
=

Same visual result

All methods render . Unicode U+2179 belongs to Number Forms.

Use Cases

Lowercase Roman Numeral Ten (ⅹ) is commonly used in:

📝 Outlines

Hierarchical numbering in docs and sections.

📋 Lists & Numbering

Secondary list levels using roman numerals.

📚 Academic Content

Preface/front matter and citation conventions.

📑 Figure / Table Labels

Stylistic labels like “Fig. ⅹ”.

🎨 Typography

When you need true roman numeral glyphs.

📖 Books & Legal Docs

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 x in 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

1

ⅹ is Unicode U+2179 (Number Forms)

U+2179 &#x2179; &#8569;
2

For CSS stylesheets, use the escape in content

\2179
3

There is no named HTML entity for ⅹ

4

In some fonts, ⅹ can resemble the letter “x”—test for clarity

❓ Frequently Asked Questions

Use &#x2179; (hex), &#8569; (decimal), or \2179 in CSS content. All render ⅹ.
U+2179 (hex 2179, decimal 8569) in Number Forms.
No. ⅹ is a roman numeral character (Number Forms). It may look similar to “x” in some fonts, but it is a different Unicode code point.
Use “10” for clarity in general UI. Use ⅹ when your content uses roman numerals by convention (outlines, front matter, typography).
Yes. Use the escape \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.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful