HTML Entity for Uppercase Roman Numeral Eleven (Ⅺ)

What You'll Learn
How to display the uppercase roman numeral eleven (Ⅺ) 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 (\216A in content).
⚡ Quick Reference — Ⅺ Entity
U+216ANumber Forms block
ⅪHexadecimal reference
ⅪDecimal reference
\216AUse in CSS content
Name Value
──────────── ──────────
Unicode U+216A
Hex code Ⅺ
HTML code Ⅺ
Named entity (none)
CSS code \216AComplete HTML Example
This example demonstrates the uppercase roman numeral eleven (Ⅺ) using hexadecimal code, decimal HTML code, and a CSS content escape on a pseudo-element:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\216A";
}
</style>
</head>
<body>
<p>Uppercase Roman Eleven using Hexa Decimal: Ⅺ</p>
<p>Uppercase Roman Eleven using HTML Code: Ⅺ</p>
<p id="point">Uppercase Roman Eleven using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The character Ⅺ (U+216A) 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 216A in hexadecimal to produce the glyph Ⅺ in HTML.
Decimal HTML Code
Ⅺ uses the decimal code point value 8554 to render the same character.
CSS Entity (Escape)
\216A 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+216A (Number Forms). There is no named HTML entity for this character.
Use Cases
The uppercase roman numeral eleven (Ⅺ) commonly appears in the following scenarios:
Hierarchical numbering for sections and sub-sections using uppercase roman numerals.
Primary numbering levels in articles, documentation, and long-form content.
Chapter numbering and conventions that use uppercase roman numerals.
Captions or references like “Fig. Ⅺ” when style requires uppercase.
Design-focused headings and decorative numbering using roman numerals.
Formal documents with established 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)
- Use Ⅺ without context if it could confuse readers
- 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
\216AUnicode U+216A 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 \216A in the content property. All render Ⅺ.U+216A (hex 216A, decimal 8554). It’s part of the Number Forms Unicode block.Ⅺ or Ⅺ) are used directly in markup. The CSS escape \216A 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
