HTML Entity for Small Roman Numeral Five (ⅴ)

What You'll Learn
How to display the small Roman numeral five (ⅴ) 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 (\2174 in content).
⚡ Quick Reference — ⅴ Entity
U+2174Number Forms block
ⅴHexadecimal reference
ⅴDecimal reference
\2174Use in CSS content
Name Value
──────────── ──────────
Unicode U+2174
Hex code ⅴ
HTML code ⅴ
Named entity (none)
CSS code \2174Complete 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: "\2174";
}
</style>
</head>
<body>
<p>Small Roman Numeral Five using Hexa Decimal: ⅴ</p>
<p>Small Roman Numeral Five using HTML Code: ⅴ</p>
<p id="point">Small Roman Numeral Five using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The character ⅴ (U+2174) 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 2174 in hexadecimal to produce the glyph ⅴ in HTML.
Decimal HTML Code
ⅴ uses the decimal code point value 8564 to render the same character.
CSS Entity (Escape)
\2174 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+2174 (Number Forms). There is no named HTML entity for this character.
Use Cases
The small Roman numeral five (ⅴ) 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 a plain “v” 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 a Latin letter “v” is 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
\2174Unicode U+2174 is in Number Forms
ⅴ is a single roman glyph, not a generic letter
There is no named HTML entity for ⅴ
❓ Frequently Asked Questions
ⅴ (hex) or ⅴ (decimal) in HTML. In CSS, use \2174 in the content property. All render ⅴ.U+2174 (hex 2174, decimal 8564). It’s part of the Number Forms Unicode block.ⅴ or ⅴ) are used directly in markup. The CSS escape \2174 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
