HTML Entity for Roman Numeral One Thousand C D (ↀ)

What You'll Learn
How to display the roman numeral one thousand C D (ↀ) in HTML using hex, decimal, and CSS entity methods. This character is part of the Number Forms Unicode block and represents 1000 in an alternate roman numeral form sometimes referred to as the C D form.
ↀ has no named HTML entity, so you’ll use numeric references (ↀ or ↀ) or a CSS escape (\2180 in content).
⚡ Quick Reference — ↀ Entity
U+2180Number Forms block
ↀHexadecimal reference
ↀDecimal reference
\2180Use in CSS content
Name Value
──────────── ──────────
Unicode U+2180
Hex code ↀ
HTML code ↀ
Named entity (none)
CSS code \2180Complete HTML Example
This example demonstrates the roman numeral one thousand C D (ↀ) using hexadecimal code, decimal HTML code, and a CSS content escape on a pseudo-element:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2180";
}
</style>
</head>
<body>
<p>Roman One Thousand C D using Hexa Decimal: ↀ</p>
<p>Roman One Thousand C D using HTML Code: ↀ</p>
<p id="point">Roman One Thousand C D using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The character ↀ (U+2180) 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 2180 in hexadecimal to produce the glyph ↀ in HTML.
Decimal HTML Code
ↀ uses the decimal code point value 8576 to render the same character.
CSS Entity (Escape)
\2180 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+2180 (Number Forms). There is no named HTML entity for this character.
Use Cases
The roman numeral one thousand C D (ↀ) commonly appears in the following scenarios:
Large divisions in structured documents using an alternate form for 1000.
Scholarly works where this Number Forms roman numeral is used for 1000.
Formats like “Part ↀ” when the C D form is preferred.
Stylistic numbering in design-heavy pages and headings.
Editions and layout conventions using special roman numeral forms.
Contexts that explicitly prefer ↀ over the more common “M” for 1000.
💡 Best Practices
Do
- Use
ↀorↀconsistently across your project - Confirm your font stack supports Number Forms (or provide fallbacks)
- Provide context on first use (ↀ is less common than “M” for 1000)
- Use CSS
contentfor generated markers when appropriate - Test rendering in your chosen fonts across devices
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
\2180Unicode U+2180 belongs to the Number Forms block
ↀ is an alternate form for 1000 (C D form)
There is no named HTML entity for ↀ
❓ Frequently Asked Questions
ↀ (hex) or ↀ (decimal) in HTML. In CSS, use \2180 in the content property. All render ↀ.U+2180 (hex 2180, decimal 8576). It’s part of the Number Forms Unicode block.ↀ or ↀ) are used directly in markup. The CSS escape \2180 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
