HTML Entity for Lowercase Roman Numeral One Hundred (ⅽ)

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

What You'll Learn

How to display the lowercase roman numeral one hundred (ⅽ) in HTML using hex, decimal, and CSS entity methods. This character belongs to the Number Forms Unicode block and is useful for outlines, numbering, lists, academic content, and typography.

Unlike some symbols, ⅽ has no named HTML entity. You’ll typically use numeric references (ⅽ or ⅽ) or a CSS escape (\217D in content).

⚡ Quick Reference — ⅽ Entity

Unicode U+217D

Number Forms block

Hex Code ⅽ

Hexadecimal reference

HTML Code ⅽ

Decimal reference

CSS Code \217D

Use in CSS content

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

Complete HTML Example

This example demonstrates the lowercase roman numeral one hundred (ⅽ) using hexadecimal code, decimal HTML code, and a CSS content escape on a pseudo-element:

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

<p>Lowercase Roman One Hundred using Hexa Decimal: &#x217D;</p>
<p>Lowercase Roman One Hundred using HTML Code: &#8573;</p>
<p id="point">Lowercase Roman One Hundred using CSS Entity: </p>

</body>
</html>
Try It Yourself

🌐 Browser Support

The character ⅽ (U+217D) is supported in all modern browsers. Rendering depends on font support for the Number Forms block, but common system fonts display it correctly:

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

👀 Live Preview

See ⅽ rendered in a few real-world contexts:

Inline text Appendix ⅽ: Additional Notes
Large glyph
Numbering Section ⅽ → 100 (lowercase roman numeral)
Font fallback check If a font lacks Number Forms, the browser will use a fallback font to render ⅽ.

🧠 How It Works

1

Hexadecimal Code

&#x217D; references Unicode 217D in hexadecimal, producing the glyph in your HTML.

HTML markup
2

Decimal HTML Code

&#8573; references the same Unicode code point using the decimal value 8573.

HTML markup
3

CSS Entity (Escape)

\217D is used in CSS (most often in the content property) to generate ⅽ without adding extra HTML.

CSS stylesheet
=

Same visual result

All methods produce . The Unicode value is U+217D in the Number Forms block. There is no named HTML entity for this character.

Use Cases

The lowercase roman numeral one hundred (ⅽ) commonly appears in the following scenarios:

📄 Outlines

Hierarchical numbering in long documents, appendices, or structured notes.

📋 Lists

Lowercase roman list markers or multi-level numbering schemes.

🎓 Academic Content

Front matter, appendices, citations, and styles that prefer roman numerals.

📝 Figure/Table Labels

Captions or references like “Table ⅽ” when style requires roman numbering.

🎨 Typography

Design-focused headings and decorative numbering where ⅽ is desired.

⚖️ Legal/Technical Docs

Formal documents with established roman numeral conventions.

💡 Best Practices

Do

  • Use &#x217D; or &#8573; consistently across your project
  • Verify your font stack supports Number Forms (or provide fallbacks)
  • Use semantic HTML (<ol>, headings) when ⅽ is part of a numbering system
  • Prefer CSS content if you want generated markers without extra markup
  • Test on common devices to ensure the glyph doesn’t fall back unexpectedly

Don’t

  • Assume every custom font includes ⅽ (Number Forms coverage varies)
  • Mix hex and decimal references randomly within the same page
  • Use the CSS escape in HTML content (it belongs in CSS)
  • Rely on visual similarity to the letter “c” where meaning matters
  • Expect a named entity (there isn’t one for ⅽ)

Key Takeaways

1

Use hex or decimal numeric references in HTML

&#x217D; &#8573;
2

For CSS, use the escape in the content property

\217D
3

Unicode U+217D belongs to the Number Forms block

4

There is no named HTML entity for ⅽ

5

Font support matters—use a good fallback stack for consistent rendering

❓ Frequently Asked Questions

Use &#x217D; (hex) or &#8573; (decimal) in HTML. In CSS, use \217D in the content property. All render ⅽ.
U+217D (hex 217D, decimal 8573). It’s part of the Number Forms Unicode block.
Use it in outlines, hierarchical lists, academic content, appendices, and typographic contexts where lowercase roman numerals are required.
HTML numeric references (&#8573; or &#x217D;) are used directly in markup. The CSS escape \217D is used in stylesheets (often in content on pseudo-elements). Same glyph, different layer.
Number Forms characters like ⅽ are typically referenced using numeric Unicode codes (hex/decimal). It’s normal to use &#x217D; or &#8573; 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