HTML Entity for Roman Numeral One (Ⅰ)

What You'll Learn
How to display 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, chapter numbering, and typographic roman numerals.
The character is referenced as Unicode U+2160.
⚡ Quick Reference — Roman Numeral One (Ⅰ)
U+2160Number Forms block
ⅠHexadecimal reference
ⅠDecimal reference
—No named entity available
Name Value
──────────── ──────────
Unicode U+2160
Hex code Ⅰ
HTML code Ⅰ
Named entity —
CSS code \2160Complete 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: "\2160";
}
</style>
</head>
<body>
<p>Roman One using Hexa Decimal: Ⅰ</p>
<p>Roman One using HTML Code: Ⅰ</p>
<p id="point">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 2160 to display Ⅰ.
Decimal HTML Code
Ⅰ uses the decimal Unicode value 8544 for the same character.
CSS Entity
\2160 is a CSS escape typically used in the content property of pseudo-elements.
Same visual result
All methods render Ⅰ. Unicode U+2160 is in the Number Forms block.
Use Cases
Roman Numeral One (Ⅰ) is commonly used in:
Hierarchical numbering like Ⅰ, Ⅱ, Ⅲ for main sections.
Primary list numbering in articles and documentation.
Chapter/volume numbering and citation styles.
Formats like “Part Ⅰ” or “Chapter Ⅰ”.
Roman numeral styling in headings and captions.
Volume 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 where it matters
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+2160 (Number Forms)
U+2160 Ⅰ ⅠUse CSS escape for generated content in content
\2160There is no named HTML entity for Ⅰ
Font choice matters—make sure Ⅰ isn’t confused with “I”
❓ Frequently Asked Questions
Ⅰ (hex), Ⅰ (decimal), or \2160 in CSS content. All render Ⅰ.U+2160 (hex 2160, decimal 8544) in the Number Forms block.Ⅰ or Ⅰ.list-style-type: upper-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
