HTML Entity for Roman Numeral Reversed One Hundred (Ↄ)

What You'll Learn
How to display the roman numeral reversed one hundred (Ↄ) in HTML using hex, decimal, and CSS entity methods. This character belongs to the Number Forms Unicode block and represents the reversed form of the roman numeral C (100) used in classical typography and specialized notation.
Like many Number Forms characters, Ↄ has no named HTML entity. You’ll use numeric references (Ↄ or Ↄ) or a CSS escape (\2183 in content).
⚡ Quick Reference — Ↄ Entity
U+2183Number Forms block
ↃHexadecimal reference
ↃDecimal reference
\2183Use in CSS content
Name Value
──────────── ──────────
Unicode U+2183
Hex code Ↄ
HTML code Ↄ
Named entity (none)
CSS code \2183Complete HTML Example
This example demonstrates the roman numeral reversed one hundred (Ↄ) using hexadecimal code, decimal HTML code, and a CSS content escape on a pseudo-element:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2183";
}
</style>
</head>
<body>
<p>Roman Reversed One Hundred using Hexa Decimal: Ↄ</p>
<p>Roman Reversed One Hundred using HTML Code: Ↄ</p>
<p id="point">Roman Reversed One Hundred using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The character Ↄ (U+2183) 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 practical contexts:
🧠 How It Works
Hexadecimal Code
Ↄ references Unicode 2183 in hexadecimal to produce the glyph Ↄ in HTML.
Decimal HTML Code
Ↄ uses the decimal code point value 8579 to render the same character.
CSS Entity (Escape)
\2183 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+2183 (Number Forms). There is no named HTML entity for this character.
Use Cases
The roman numeral reversed one hundred (Ↄ) commonly appears in the following scenarios:
Historical texts and inscription-style typography where reversed numeral forms are used.
Critical editions, academic papers, and historical notation that uses roman numeral variants.
Certificates, design-heavy layouts, and stylistic numbering systems.
Special numbering schemes where Ↄ is the expected symbol for 100.
Transcriptions and analyses that reference classical numeral forms.
Editions of classical works where reversed numerals are part of the style system.
💡 Best Practices
Do
- Use
ↃorↃconsistently across your project - Ensure your font stack supports Number Forms (or provide fallbacks)
- Provide context on first use (many users won’t recognize Ↄ immediately)
- 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 in 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
\2183Unicode U+2183 belongs to the Number Forms block
Ↄ is the reversed form of C (100)
There is no named HTML entity for Ↄ
❓ Frequently Asked Questions
Ↄ (hex) or Ↄ (decimal) in HTML. In CSS, use \2183 in the content property. All render Ↄ.U+2183 (hex 2183, decimal 8579). It’s part of the Number Forms Unicode block.Ↄ or Ↄ) are used directly in markup. The CSS escape \2183 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
