HTML Entity for Small Roman Numeral Six (ⅵ)

What You'll Learn
How to display the small 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, lists, academic formatting, legal numbering, and table-of-contents style numbering.
ⅵ has no named HTML entity, so you’ll use numeric references (ⅵ or ⅵ) or a CSS escape (\2175 in content).
⚡ Quick Reference — ⅵ Entity
U+2175Number Forms block
ⅵHexadecimal reference
ⅵDecimal reference
\2175Use in CSS content
Name Value
──────────── ──────────
Unicode U+2175
Hex code ⅵ
HTML code ⅵ
Named entity (none)
CSS code \2175Complete 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: "\2175";
}
</style>
</head>
<body>
<p>Small Roman Numeral Six using Hexa Decimal: ⅵ</p>
<p>Small Roman Numeral Six using HTML Code: ⅵ</p>
<p id="point">Small Roman Numeral Six using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The character ⅵ (U+2175) 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 2175 in hexadecimal to produce the glyph ⅵ in HTML.
Decimal HTML Code
ⅵ uses the decimal code point value 8565 to render the same character.
CSS Entity (Escape)
\2175 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+2175 (Number Forms). There is no named HTML entity for this character.
Use Cases
The small Roman numeral six (ⅵ) commonly appears in the following scenarios:
Hierarchical numbering in documents (i, ii, iii, ⅳ, ⅴ, ⅵ).
Front-matter numbering where lower-roman is conventional.
Clauses, sub-sections, and citations that use roman numerals.
Figure/Table labels like “Figure ⅵ”.
Volumes, parts, and stylistic numbering in books (e.g., Volume ⅵ).
Use a single glyph instead of plain “vi” for consistent roman spacing.
💡 Best Practices
Do
- Use
<ol style="list-style-type: lower-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., “Section ⅵ”)
Don’t
- Use ⅵ where two Latin letters “v” + “i” are semantically intended (they can render 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
\2175Unicode U+2175 is in Number Forms
ⅵ is a single roman glyph, not two letters
There is no named HTML entity for ⅵ
❓ Frequently Asked Questions
ⅵ (hex) or ⅵ (decimal) in HTML. In CSS, use \2175 in the content property. All render ⅵ.U+2175 (hex 2175, decimal 8565). It’s part of the Number Forms Unicode block.ⅵ or ⅵ) are used directly in markup. The CSS escape \2175 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
