HTML Entity for Roman Numeral Ten Thousand (ↂ)

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

What You'll Learn

How to display the roman numeral ten thousand (ↂ) in HTML using hex, decimal, and CSS entity methods. This character is part of the Number Forms Unicode block and is useful for outlines, numbering, academic content, and typography where 10,000 is written in roman numerals.

ↂ has no named HTML entity, so you’ll use numeric references (ↂ or ↂ) or a CSS escape (\2182 in content).

⚡ Quick Reference — ↂ Entity

Unicode U+2182

Number Forms block

Hex Code ↂ

Hexadecimal reference

HTML Code ↂ

Decimal reference

CSS Code \2182

Use in CSS content

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2182
Hex code       ↂ
HTML code      ↂ
Named entity   (none)
CSS code       \2182
1

Complete HTML Example

This example demonstrates the roman numeral ten thousand (ↂ) using hexadecimal code, decimal HTML code, and a CSS content escape on a pseudo-element:

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

<p>Roman Ten Thousand using Hexa Decimal: &#x2182;</p>
<p>Roman Ten Thousand using HTML Code: &#8578;</p>
<p id="point">Roman Ten Thousand using CSS Entity: </p>

</body>
</html>
Try It Yourself

🌐 Browser Support

The character ↂ (U+2182) is supported in all modern browsers. Rendering depends on font support for the Number Forms block, so include a sensible fallback font stack:

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

👀 Live Preview

See ↂ rendered in a few real-world contexts:

Inline text Part ↂ: Extended Appendix
Large glyph
Numbering ↂ → 10000 (roman numeral ten thousand)
Font fallback check If a font lacks Number Forms, the browser will use a fallback font to render ↂ.

🧠 How It Works

1

Hexadecimal Code

&#x2182; references Unicode 2182 in hexadecimal to produce the glyph in HTML.

HTML markup
2

Decimal HTML Code

&#8578; uses the decimal code point value 8578 to render the same character.

HTML markup
3

CSS Entity (Escape)

\2182 is used in CSS (often in content) to generate ↂ in pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All methods render . Unicode is U+2182 (Number Forms). There is no named HTML entity for this character.

Use Cases

The roman numeral ten thousand (ↂ) commonly appears in the following scenarios:

📄 Outlines

Very large divisions in structured documents using roman numerals.

📋 Lists

Numbering schemes that extend to very large roman numeral values.

🎓 Academic Content

Scholarly works and references that use roman numerals for 10,000.

📝 Figure/Section Labels

Formats like “Part ↂ” in styled documents.

🎨 Typography

Design-focused headings and decorative numbering using roman numerals.

⚖️ Legal/Technical Docs

Formal documents that use roman numeral conventions at scale.

💡 Best Practices

Do

  • Use &#x2182; or &#8578; consistently across your project
  • Verify your font stack supports Number Forms (or provide fallbacks)
  • Provide context on first use (roman numeral values beyond 3999 can be unfamiliar)
  • Prefer CSS content if you want generated markers without extra markup
  • Test on common devices to ensure the glyph doesn’t fall back unexpectedly

Don’t

  • Assume every font supports ↂ (Number Forms coverage varies)
  • Mix hex and decimal references randomly within the same page
  • Use the CSS escape in HTML content (it belongs in CSS)
  • Use ↂ without explanation if it could confuse readers
  • Expect a named entity (there isn’t one for ↂ)

Key Takeaways

1

Use numeric references in HTML

&#x2182; &#8578;
2

For CSS, use the escape in the content property

\2182
3

Unicode U+2182 belongs to the Number Forms block

4

ↂ represents 10,000 in roman numeral notation

5

There is no named HTML entity for ↂ

❓ Frequently Asked Questions

Use &#x2182; (hex) or &#8578; (decimal) in HTML. In CSS, use \2182 in the content property. All render ↂ.
U+2182 (hex 2182, decimal 8578). It’s part of the Number Forms Unicode block.
Use it in outlines, hierarchical lists, academic content, and typography where roman numerals for 10,000 are required.
HTML numeric references (&#8578; or &#x2182;) are used directly in markup. The CSS escape \2182 is used in stylesheets (often in content on pseudo-elements). Same glyph, different layer.
Number Forms characters like ↂ are normally referenced using numeric Unicode codes. It’s standard to use &#x2182; or &#8578; instead of a named entity.

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