HTML Entity for Roman Numeral Three (Ⅲ)

Beginner
⏱️ 5 min read
📚 Updated: Aug 2025
🎯 1 Code Example
Unicode U+2162

What You'll Learn

How to display the Roman numeral three (Ⅲ) in HTML using numeric character references (hex and decimal) and a CSS escape for generated content.

This character belongs to the Number Forms Unicode block and is a single typographic glyph for the Roman numeral III, commonly used in outlines, headings, academic/historical references, and formal numbering.

⚡ Quick Reference — Roman Numeral Three Entity

Unicode U+2162

Number Forms block

Hex Code Ⅲ

Hexadecimal reference

HTML Code Ⅲ

Decimal reference

Named Entity

No named entity for Ⅲ

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2162
Hex code       Ⅲ
HTML code      Ⅲ
Named entity   (none)
CSS code       \2162
1

Complete HTML Example

This example shows the Roman numeral three (Ⅲ) using hex code, decimal HTML code, and a CSS content escape on a pseudo-element:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2162";
  }
 </style>
</head>
<body>

<p>Roman Numeral Three using Hexa Decimal: &#x2162;</p>
<p>Roman Numeral Three using HTML Code: &#8546;</p>
<p id="point">Roman Numeral Three using CSS Entity: </p>

</body>
</html>
Try It Yourself

🌐 Browser Support

Roman numeral Ⅲ (U+2162) is supported in all modern browsers and devices with standard Unicode fonts:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

If you see a fallback box, switch to a font with strong Unicode coverage (for example, a modern system UI font).

👀 Live Preview

See the Roman numeral three rendered in common UI and content contexts:

Inline text Part Ⅲ covers advanced topics.
Large glyph
Heading style Ⅲ. Methods
Monospace Volume Ⅲ
Sequence Ⅰ Ⅱ Ⅲ Ⅳ Ⅴ

🧠 How It Works

1

Hexadecimal Code

&#x2162; uses the Unicode hexadecimal value 2162 to render Ⅲ. The x prefix indicates hexadecimal.

HTML markup
2

Decimal HTML Code

&#8546; uses the decimal Unicode value 8546. It renders the same glyph Ⅲ.

HTML markup
3

CSS Entity

\2162 is a CSS escape used in the content property for pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All methods produce the same character: . Unicode U+2162 is in the Number Forms block (U+2150–U+218F).

Use Cases

Roman numeral three (Ⅲ) is commonly used in these scenarios:

📋 Outlines & Headings

Number major sections: Ⅰ. Ⅱ. Ⅲ. Ⅳ. for a formal structure.

📖 Academic & Historical

References like Volume Ⅲ, Act Ⅲ, or Part Ⅲ.

⏰ Clock Faces

Clock numerals and stylized numbering systems.

📝 Legal & Formal Docs

Sectioning like Article Ⅲ in formal documents.

🎬 Sequels & Editions

Use a single glyph instead of "III" for consistent typography.

🎨 Typography & Design

Polished visual spacing compared to three separate characters.

💡 Best Practices

Do

  • Use &#x2162; or &#8546; for portability (no named entity)
  • Pair Ⅲ with text on first use (e.g., Part Ⅲ (Three))
  • Ensure your font supports Number Forms (U+2150–U+218F)
  • Keep numbering consistent across a document (all uppercase Roman numerals)
  • Use CSS escapes only in stylesheets (generated content)

Don’t

  • Assume every font renders Ⅲ the same way
  • Use CSS escapes like \2162 directly in HTML markup
  • Replace semantic lists with purely visual numbering
  • Mix uppercase (Ⅲ) and lowercase (ⅲ) forms unintentionally
  • Overuse Roman numerals where plain numbers are clearer

Key Takeaways

1

Use numeric references to render Ⅲ in HTML

&#x2162; &#8546;
2

For generated content in CSS, use the escape

\2162
3

Unicode U+2162 is in the Number Forms block

4

There is no named HTML entity for Ⅲ

5

Use Ⅲ for formal outlines, headings, and references where Roman numerals are expected

❓ Frequently Asked Questions

Use &#x2162; (hex) or &#8546; (decimal) directly in HTML. For CSS generated content, use \2162 in the content property.
U+2162 (hex 2162, decimal 8546) from the Number Forms Unicode block.
No. Use numeric codes like &#x2162; or &#8546;.
Use it for outlines and headings, volume/chapter numbering, academic or historical references, clock faces, and formal sectioning where uppercase Roman numerals are conventional.
HTML references (&#8546; / &#x2162;) are used in markup. The CSS escape \2162 is used in stylesheets for pseudo-element content. Both render Ⅲ.

Explore More HTML Entities!

Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful