HTML Entity for Roman Numeral Ten Thousand (ↂ)

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
U+2182Number Forms block
ↂHexadecimal reference
ↂDecimal reference
\2182Use in CSS content
Name Value
──────────── ──────────
Unicode U+2182
Hex code ↂ
HTML code ↂ
Named entity (none)
CSS code \2182Complete 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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2182";
}
</style>
</head>
<body>
<p>Roman Ten Thousand using Hexa Decimal: ↂ</p>
<p>Roman Ten Thousand using HTML Code: ↂ</p>
<p id="point">Roman Ten Thousand using CSS Entity: </p>
</body>
</html>🌐 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:
👀 Live Preview
See ↂ rendered in a few real-world contexts:
🧠 How It Works
Hexadecimal Code
ↂ references Unicode 2182 in hexadecimal to produce the glyph ↂ in HTML.
Decimal HTML Code
ↂ uses the decimal code point value 8578 to render the same character.
CSS Entity (Escape)
\2182 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+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:
Very large divisions in structured documents using roman numerals.
Numbering schemes that extend to very large roman numeral values.
Scholarly works and references that use roman numerals for 10,000.
Formats like “Part ↂ” in styled documents.
Design-focused headings and decorative numbering using roman numerals.
Formal documents that use roman numeral conventions at scale.
💡 Best Practices
Do
- Use
ↂorↂ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
contentif 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
Use numeric references in HTML
ↂ ↂFor CSS, use the escape in the content property
\2182Unicode U+2182 belongs to the Number Forms block
ↂ represents 10,000 in roman numeral notation
There is no named HTML entity for ↂ
❓ Frequently Asked Questions
ↂ (hex) or ↂ (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.ↂ or ↂ) are used directly in markup. The CSS escape \2182 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
