HTML Entity for Roman Numeral Six (Ⅵ)

What You'll Learn
How to display the Roman numeral six (Ⅵ) in HTML using hex, decimal, and CSS entity methods. This character lives in the Number Forms Unicode block and is commonly used for outlines, headings, academic references, historical numbering, and clock-style numbering.
Ⅵ has no named HTML entity, so you’ll use numeric references (Ⅵ or Ⅵ) or a CSS escape (\2165 in content).
⚡ Quick Reference — Ⅵ Entity
U+2165Number Forms block
ⅥHexadecimal reference
ⅥDecimal reference
\2165Use in CSS content
Name Value
──────────── ──────────
Unicode U+2165
Hex code Ⅵ
HTML code Ⅵ
Named entity (none)
CSS code \2165Complete HTML Example
This example demonstrates Ⅵ using hexadecimal code, decimal HTML code, and a CSS content escape on a pseudo-element:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2165";
}
</style>
</head>
<body>
<p>Roman Numeral Six using Hexa Decimal: Ⅵ</p>
<p>Roman Numeral Six using HTML Code: Ⅵ</p>
<p id="point">Roman Numeral Six using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The character Ⅵ (U+2165) 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 practical contexts:
🧠 How It Works
Hexadecimal Code
Ⅵ references Unicode 2165 in hexadecimal to produce the glyph Ⅵ in HTML.
Decimal HTML Code
Ⅵ uses the decimal code point value 8549 to render the same character.
CSS Entity (Escape)
\2165 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+2165 (Number Forms). There is no named HTML entity for this character.
Use Cases
The Roman numeral six (Ⅵ) commonly appears in the following scenarios:
Formal numbering in documents (Ⅰ, Ⅱ, Ⅲ, Ⅳ, Ⅴ, Ⅵ).
Volumes, parts, and chapters (e.g., Volume Ⅵ, Part Ⅵ).
Articles, acts, and sections (e.g., Article Ⅵ).
Clock numerals and decorative numbering styles.
Section headings like “Part Ⅵ” or series labels (Edition Ⅵ).
Use a single glyph for consistent roman spacing in headings.
💡 Best Practices
Do
- Use
<ol style="list-style-type: upper-roman">when it’s truly a list - Use numeric references (
Ⅵ/Ⅵ) for portability - Verify font support for Number Forms if the glyph is critical
- Keep numbering style consistent within a section
- Pair with text context when needed (e.g., “Part Ⅵ”)
Don’t
- Use Ⅵ where plain Latin “V” + “I” is semantically intended (they can behave differently)
- Assume all fonts include Number Forms
- Mix uppercase and lowercase roman styles without reason
- Use the CSS escape inside HTML content
- Replace semantic list structure with decorative glyphs
Key Takeaways
Use numeric references in HTML
Ⅵ ⅥFor CSS, use the escape in the content property
\2165Unicode U+2165 is in Number Forms
Ⅵ is a roman numeral glyph, not generic body text
There is no named HTML entity for Ⅵ
❓ Frequently Asked Questions
Ⅵ (hex) or Ⅵ (decimal) in HTML. In CSS, use \2165 in the content property. All render Ⅵ.U+2165 (hex 2165, decimal 8549). It’s part of the Number Forms Unicode block.Ⅵ or Ⅵ) are used directly in markup. The CSS escape \2165 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
