HTML Entity for Lowercase Roman Numeral One (ⅰ)

What You'll Learn
How to display Lowercase Roman Numeral One (ⅰ) in HTML using Unicode entity methods: hex, decimal, and a CSS escape. This character is part of the Number Forms block and is useful for outlines, hierarchical lists, and typographic numbering.
The character is referenced as Unicode U+2170.
⚡ Quick Reference — Lowercase Roman Numeral One (ⅰ)
U+2170Number Forms block
ⅰHexadecimal reference
ⅰDecimal reference
—No named entity available
Name Value
──────────── ──────────
Unicode U+2170
Hex code ⅰ
HTML code ⅰ
Named entity —
CSS code \2170Complete HTML Example
This example renders ⅰ using the hex entity, decimal entity, and a CSS escape on a pseudo-element:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2170";
}
</style>
</head>
<body>
<p>Lowercase Roman One using Hexa Decimal: ⅰ</p>
<p>Lowercase Roman One using HTML Code: ⅰ</p>
<p id="point">Lowercase Roman One using CSS Entity: </p>
</body>
</html>🌐 Browser Support
This Unicode character (ⅰ) and its numeric entities are supported in modern browsers (rendering can vary slightly by font):
👀 Live Preview
See ⅰ used in a few common numbering patterns:
🧠 How It Works
Hexadecimal Code
ⅰ uses the Unicode hexadecimal value 2170 to display ⅰ.
Decimal HTML Code
ⅰ uses the decimal Unicode value 8560 for the same character.
CSS Entity
\2170 is a CSS escape typically used in the content property of pseudo-elements.
Same visual result
All methods render ⅰ. Unicode U+2170 is in the Number Forms block.
Use Cases
Lowercase Roman Numeral One (ⅰ) is commonly used in:
Hierarchical numbering like ⅰ, ⅱ, ⅲ in outlines.
Secondary list numbering in articles and documentation.
Preface numbering, appendices, and citation styles.
Numbering like “Fig. ⅰ” when style requires lowercase.
Roman numeral styling in headings and captions.
Front matter page numbering (ⅰ, ⅱ, ⅲ) and conventions.
💡 Best Practices
Do
- Use
ⅰorⅰconsistently across a page - Verify font support for the Number Forms block on your target devices
- Use semantic structure (
<ol>, headings) for real lists/outlines and treat ⅰ as a stylistic glyph - Ensure ⅰ is distinguishable from the letter “i” in your chosen font
Don’t
- Assume there is a named entity for ⅰ (there isn’t)
- Mix CSS escapes into HTML content (use them in stylesheets only)
- Use roman numeral glyphs where plain digits are clearer
- Rely on one font without fallbacks for Number Forms characters
Key Takeaways
ⅰ is Unicode U+2170 (Number Forms)
U+2170 ⅰ ⅰUse CSS escape for generated content in content
\2170There is no named HTML entity for ⅰ
Font choice matters—make sure ⅰ isn’t confused with “i”
❓ Frequently Asked Questions
ⅰ (hex), ⅰ (decimal), or \2170 in CSS content. All render ⅰ.U+2170 (hex 2170, decimal 8560) in the Number Forms block.ⅰ or ⅰ.list-style-type: lower-roman keeps semantics and scales automatically. Use ⅰ when you need the specific Unicode glyph in inline text or UI labels.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.
8 people found this page helpful
