HTML Entity for Lowercase Roman Numeral One Thousand (ⅿ)

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

What You'll Learn

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

ⅿ has no named HTML entity, so you’ll use numeric references (ⅿ or ⅿ) or a CSS escape (\217F in content).

⚡ Quick Reference — ⅿ Entity

Unicode U+217F

Number Forms block

Hex Code ⅿ

Hexadecimal reference

HTML Code ⅿ

Decimal reference

CSS Code \217F

Use in CSS content

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

Complete HTML Example

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

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

<p>Lowercase Roman One Thousand using Hexa Decimal: &#x217F;</p>
<p>Lowercase Roman One Thousand using HTML Code: &#8575;</p>
<p id="point">Lowercase Roman One Thousand using CSS Entity: </p>

</body>
</html>
Try It Yourself

🌐 Browser Support

The character ⅿ (U+217F) 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 real-world contexts:

Inline text Appendix ⅿ: Additional Material
Large glyph
Numbering ⅿ → 1000 (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

&#x217F; references Unicode 217F in hexadecimal to produce the glyph in HTML.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity (Escape)

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

Use Cases

The lowercase roman numeral one thousand (ⅿ) 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, citation styles, and conventions using lowercase roman numerals.

📝 Figure/Table Labels

Captions or references like “Fig. ⅿ” when style requires roman numbering.

🎨 Typography

Design-focused headings and decorative numbering using roman numerals.

⚖️ Legal/Technical Docs

Formal documents with established lowercase roman numeral conventions.

💡 Best Practices

Do

  • Use &#x217F; or &#8575; 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 “m” where meaning matters
  • Expect a named entity (there isn’t one for ⅿ)

Key Takeaways

1

Use numeric references in HTML

&#x217F; &#8575;
2

For CSS, use the escape in the content property

\217F
3

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