HTML Entity for Roman Numeral Fifty Early Form (ↆ)

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

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

Unicode U+2186

Number Forms block

Hex Code ↆ

Hexadecimal reference

HTML Code ↆ

Decimal reference

CSS Code \2186

Use in CSS content

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

Complete 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:

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

<p>Roman Numeral Fifty Early Form using Hexa Decimal: &#x2186;</p>
<p>Roman Numeral Fifty Early Form using HTML Code: &#8582;</p>
<p id="point">Roman Numeral Fifty Early Form using CSS Entity: </p>

</body>
</html>
Try It Yourself

🌐 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:

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

👀 Live Preview

See ↆ rendered in a few practical contexts:

Historical style Regnal year ↆ
Versus standard Ⅼ Early form ↆ · Common Roman fifty Ⅼ
Large glyph
Font fallback If a font lacks Number Forms, the browser picks a fallback that includes ↆ.

🧠 How It Works

1

Hexadecimal Code

&#x2186; references Unicode 2186 in hexadecimal to produce the glyph in HTML.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity (Escape)

\2186 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+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:

📚 Historical texts

Editions that reproduce classical or early typographic conventions.

🎓 Scholarship

Footnotes, apparatus, and commentary citing variant Roman forms.

🎨 Typography

When design or paleography calls for the early-form glyph instead of Ⅼ.

📝 Education

Teaching how Roman numerals evolved and how Unicode encodes variants.

⚖️ Epigraphy

Digital representations aligned with inscription conventions.

📄 Museum & archives

Catalog labels and exhibit copy that preserve authentic numeral shapes.

💡 Best Practices

Do

  • Use &#x2186; or &#8582; 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 content when 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

1

Use numeric references in HTML

&#x2186; &#8582;
2

For CSS, use the escape in the content property

\2186
3

Unicode U+2186 is the early form of Roman fifty

4

There is no named HTML entity for ↆ

5

For everyday Roman 50, (U+216C) is often clearer

❓ Frequently Asked Questions

Use &#x2186; (hex) or &#8582; (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.
Use it for historical or classical texts, scholarly editions, Latin inscriptions, and educational content where the early or variant form is appropriate. For general modern Roman fifty, consider (U+216C).
HTML numeric references (&#8582; or &#x2186;) are used directly in markup. The CSS escape \2186 is used in stylesheets (often in content on pseudo-elements). Same glyph, different layer.
Number Forms characters are normally referenced with numeric Unicode codes. Use &#x2186; or &#8582; 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