HTML Entity for Small Roman Numeral Four (ⅳ)

What You'll Learn
How to display the small Roman numeral four (ⅳ) 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 (\2173 in content).
⚡ Quick Reference — ⅳ Entity
U+2173Number Forms block
ⅳHexadecimal reference
ⅳDecimal reference
\2173Use in CSS content
Name Value
──────────── ──────────
Unicode U+2173
Hex code ⅳ
HTML code ⅳ
Named entity (none)
CSS code \2173Complete 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: "\2173";
}
</style>
</head>
<body>
<p>Small Roman Numeral Four using Hexa Decimal: ⅳ</p>
<p>Small Roman Numeral Four using HTML Code: ⅳ</p>
<p id="point">Small Roman Numeral Four using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The character ⅳ (U+2173) 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 2173 in hexadecimal to produce the glyph ⅳ in HTML.
Decimal HTML Code
ⅳ uses the decimal code point value 8563 to render the same character.
CSS Entity (Escape)
\2173 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+2173 (Number Forms). There is no named HTML entity for this character.
Use Cases
The small Roman numeral four (ⅳ) commonly appears in the following scenarios:
Hierarchical numbering in documents (i, ii, iii, ⅳ, v).
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.
Use a single glyph instead of “iv” for consistent 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 “iv” letters 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
\2173Unicode U+2173 is in Number Forms
ⅳ is a single glyph, not two letters
There is no named HTML entity for ⅳ
❓ Frequently Asked Questions
ⅳ (hex) or ⅳ (decimal) in HTML. In CSS, use \2173 in the content property. All render ⅳ.U+2173 (hex 2173, decimal 8563). It’s part of the Number Forms Unicode block.ⅳ or ⅳ) are used directly in markup. The CSS escape \2173 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
