HTML Entity for Roman Numeral Fifty Early Form (ↆ)

What You'll Learn
How to display the Roman numeral fifty early form (ↆ) in HTML using hex, decimal, and CSS entity methods. This character is part of the Number Forms Unicode block and represents a historical or variant glyph for the value fifty.
ↆ has no named HTML entity, so you’ll use numeric references (ↆ or ↆ) or a CSS escape (\2186 in content). For the common modern Roman fifty, many documents use Ⅼ (U+216C) instead.
⚡ Quick Reference — ↆ Entity
U+2186Number Forms block
ↆHexadecimal reference
ↆDecimal reference
\2186Use in CSS content
Name Value
──────────── ──────────
Unicode U+2186
Hex code ↆ
HTML code ↆ
Named entity (none)
CSS code \2186Complete HTML Example
This example demonstrates the Roman numeral fifty early form (ↆ) using hexadecimal code, decimal HTML code, and a CSS content escape on a pseudo-element:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2186";
}
</style>
</head>
<body>
<p>Roman Numeral Fifty Early Form using Hexa Decimal: ↆ</p>
<p>Roman Numeral Fifty Early Form using HTML Code: ↆ</p>
<p id="point">Roman Numeral Fifty Early Form using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The character ↆ (U+2186) 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 2186 in hexadecimal to produce the glyph ↆ in HTML.
Decimal HTML Code
ↆ uses the decimal code point value 8582 to render the same character.
CSS Entity (Escape)
\2186 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+2186 (Number Forms). There is no named HTML entity for this character.
Use Cases
The Roman numeral fifty early form (ↆ) commonly appears in these scenarios:
Editions that reproduce classical or early typographic conventions.
Footnotes, apparatus, and commentary citing variant Roman forms.
When design or paleography calls for the early-form glyph instead of Ⅼ.
Teaching how Roman numerals evolved and how Unicode encodes variants.
Digital representations aligned with inscription conventions.
Catalog labels and exhibit copy that preserve authentic numeral shapes.
💡 Best Practices
Do
- Use
ↆorↆconsistently when you need this specific glyph - Verify font coverage for Number Forms (or provide fallbacks)
- Explain to readers when ↆ is intentional versus the more familiar Ⅼ
- Use CSS
contentwhen generating markers without extra markup - Test on target devices if the glyph is critical to meaning
Don’t
- Use ↆ for general “fifty” when readers expect standard Roman Ⅼ
- Assume every custom webfont includes ↆ
- Mix hex and decimal references randomly on the same page
- Use the CSS escape in HTML text (it belongs in CSS)
- 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
\2186Unicode U+2186 is the early form of Roman fifty
There is no named HTML entity for ↆ
For everyday Roman 50, Ⅼ (U+216C) is often clearer
❓ Frequently Asked Questions
ↆ (hex) or ↆ (decimal) in HTML. In CSS, use \2186 in the content property. All render ↆ.U+2186 (hex 2186, decimal 8582). It’s part of the Number Forms Unicode block.U+216C).ↆ or ↆ) are used directly in markup. The CSS escape \2186 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
