HTML Entity for Lowercase Roman Numeral One Thousand (ⅿ)

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
U+217FNumber Forms block
ⅿHexadecimal reference
ⅿDecimal reference
\217FUse in CSS content
Name Value
──────────── ──────────
Unicode U+217F
Hex code ⅿ
HTML code ⅿ
Named entity (none)
CSS code \217FComplete 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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\217F";
}
</style>
</head>
<body>
<p>Lowercase Roman One Thousand using Hexa Decimal: ⅿ</p>
<p>Lowercase Roman One Thousand using HTML Code: ⅿ</p>
<p id="point">Lowercase Roman One Thousand using CSS Entity: </p>
</body>
</html>🌐 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:
👀 Live Preview
See ⅿ rendered in a few real-world contexts:
🧠 How It Works
Hexadecimal Code
ⅿ references Unicode 217F in hexadecimal to produce the glyph ⅿ in HTML.
Decimal HTML Code
ⅿ uses the decimal code point value 8575 to render the same character.
CSS Entity (Escape)
\217F is used in CSS (often in content) to generate ⅿ in pseudo-elements like ::before and ::after.
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:
Hierarchical numbering in long documents, appendices, or structured notes.
Lowercase roman list markers or multi-level numbering schemes.
Front matter, appendices, citation styles, and conventions using lowercase roman numerals.
Captions or references like “Fig. ⅿ” when style requires roman numbering.
Design-focused headings and decorative numbering using roman numerals.
Formal documents with established lowercase roman numeral conventions.
💡 Best Practices
Do
- Use
ⅿorⅿ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
contentif 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
Use numeric references in HTML
ⅿ ⅿFor CSS, use the escape in the content property
\217FUnicode U+217F belongs to the Number Forms block
There is no named HTML entity for ⅿ
Font support matters—use a good fallback stack for consistent rendering
❓ Frequently Asked Questions
ⅿ (hex) or ⅿ (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.ⅿ or ⅿ) are used directly in markup. The CSS escape \217F is used in stylesheets (often in content on pseudo-elements). Same glyph, different layer.ⅿ or ⅿ instead of a named entity.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.
8 people found this page helpful
