HTML Entity for Roman Numeral Five (Ⅴ)

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