HTML Entity for Roman Numeral Fifty (Ⅼ)

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

What You'll Learn

How to display the Roman numeral fifty (Ⅼ) in HTML using hex, decimal, and CSS entity methods. This character is part of the Number Forms Unicode block and is the standard single-glyph uppercase Roman fifty.

Ⅼ has no named HTML entity, so you’ll use numeric references (Ⅼ or Ⅼ) or a CSS escape (\216C in content). Do not confuse with the Latin letter L (U+004C) or with the lowercase Roman fifty (U+217C).

⚡ Quick Reference — Ⅼ Entity

Unicode U+216C

Number Forms block

Hex Code Ⅼ

Hexadecimal reference

HTML Code Ⅼ

Decimal reference

CSS Code \216C

Use in CSS content

Reference Table
Name           Value
────────────   ──────────
Unicode        U+216C
Hex code       Ⅼ
HTML code      Ⅼ
Named entity   (none)
CSS code       \216C
1

Complete HTML Example

This example demonstrates the Roman numeral fifty (Ⅼ) using hexadecimal code, decimal HTML code, and a CSS content escape on a pseudo-element:

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

<p>Roman Numeral Fifty using Hexa Decimal: &#x216C;</p>
<p>Roman Numeral Fifty using HTML Code: &#8556;</p>
<p id="point">Roman Numeral Fifty using CSS Entity: </p>

</body>
</html>
Try It Yourself

🌐 Browser Support

The character Ⅼ (U+216C) 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:

Chapter heading Volume Ⅼ — Preface
Versus lowercase ⅼ Uppercase Ⅼ · Lowercase ⅼ
Large glyph
Letter vs numeral Latin L (U+004C) is not the same code point as Ⅼ (U+216C).

🧠 How It Works

1

Hexadecimal Code

&#x216C; references Unicode 216C in hexadecimal to produce the glyph in HTML.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity (Escape)

\216C 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+216C (Number Forms). There is no named HTML entity for this character.

Use Cases

The Roman numeral fifty (Ⅼ) commonly appears in these scenarios:

📄 Outlines

Major divisions and top-level roman numbering in documents.

🎓 Academic

Front matter, chapter labels, and formal section numbering.

📚 Publishing

Volume numbers, copyright pages, and classical references.

🕐 Clocks & film

Traditional clock numerals and title-card styling (where Ⅼ means 50).

🎨 Typography

Design systems that use Unicode Number Forms for authentic Roman glyphs.

💻 Generated content

CMS or template output that emits consistent numeric references.

💡 Best Practices

Do

  • Use &#x216C; or &#8556; when you need the Number Forms glyph
  • Verify font coverage for Number Forms (or provide fallbacks)
  • Keep uppercase vs lowercase Roman levels consistent across a document
  • Use CSS content when generating markers without extra markup
  • Document when Ⅼ is intentional versus the letter L for reviewers

Don’t

  • Confuse Ⅼ with ASCII L or with lowercase 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

&#x216C; &#8556;
2

For CSS, use the escape in the content property

\216C
3

Unicode U+216C is standard Roman fifty (Ⅼ)

4

There is no named HTML entity for Ⅼ

5

Early form (U+2186) is a different historical glyph

❓ Frequently Asked Questions

Use &#x216C; (hex) or &#8556; (decimal) in HTML. In CSS, use \216C in the content property. All render Ⅼ.
U+216C (hex 216C, decimal 8556). It’s part of the Number Forms Unicode block.
Use it for outlines, main section numbering, academic or historical references, volume and chapter numbers, and any content where uppercase Roman numerals are required.
HTML numeric references (&#8556; or &#x216C;) are used directly in markup. The CSS escape \216C 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 &#x216C; or &#8556; 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