HTML Entity for Small Roman Numeral Fifty (ⅼ)

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

What You'll Learn

How to display the small Roman numeral fifty (ⅼ) in HTML using hex, decimal, and CSS entity methods. This character is part of the Number Forms Unicode block and encodes a single glyph for the value fifty in lowercase Roman style.

ⅼ has no named HTML entity, so you’ll use numeric references (ⅼ or ⅼ) or a CSS escape (\217C in content). Visually, can resemble the Latin letter “l”; use the correct code point when you mean the numeral, not the letter.

⚡ Quick Reference — ⅼ Entity

Unicode U+217C

Number Forms block

Hex Code ⅼ

Hexadecimal reference

HTML Code ⅼ

Decimal reference

CSS Code \217C

Use in CSS content

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

Complete HTML Example

This example demonstrates the small 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: "\217C";
  }
 </style>
</head>
<body>

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

</body>
</html>
Try It Yourself

🌐 Browser Support

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

Outline style Part ⅼ — Appendix
Versus uppercase Ⅼ Lowercase ⅼ · Uppercase Ⅼ
Large glyph
Letter vs numeral Latin l (U+006C) is not the same code point as ⅼ (U+217C).

🧠 How It Works

1

Hexadecimal Code

&#x217C; references Unicode 217C in hexadecimal to produce the glyph in HTML.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity (Escape)

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

Use Cases

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

📄 Outlines

Lowercase Roman levels in multi-level outlines and documentation.

📋 Lists

Numbered lists where style calls for lowercase Roman numerals.

⚖️ Legal & academic

Pleadings, briefs, and papers that follow roman-numbering conventions.

📚 TOC & captions

Table of contents entries and figure labels using lowercase romans.

🎨 Typography

Design systems that pair uppercase and lowercase Roman numeral glyphs.

💻 Generated markers

CMS or script output that emits numeric references for consistent glyphs.

💡 Best Practices

Do

  • Use &#x217C; or &#8572; when you specifically need the Number Forms glyph
  • Verify font coverage for Number Forms (or provide fallbacks)
  • Distinguish ⅼ from the letter l in specs, copy, and code review
  • Use CSS content when generating list markers without extra markup
  • Prefer <ol type="i"> when browser-generated lowercase Roman suffices

Don’t

  • Confuse ⅼ with ASCII l or with the digit 1 in sans-serif fonts
  • 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

&#x217C; &#8572;
2

For CSS, use the escape in the content property

\217C
3

Unicode U+217C is small Roman fifty (ⅼ)

4

There is no named HTML entity for ⅼ

5

Do not confuse with the Latin letter l

❓ Frequently Asked Questions

Use &#x217C; (hex) or &#8572; (decimal) in HTML. In CSS, use \217C in the content property. All render ⅼ.
U+217C (hex 217C, decimal 8572). It’s part of the Number Forms Unicode block.
Use it for outlines, lists, academic or legal numbering, tables of contents, and captions where lowercase Roman numerals are required.
HTML numeric references (&#8572; or &#x217C;) are used directly in markup. The CSS escape \217C 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 &#x217C; or &#8572; 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