HTML Entity for Small Roman Numeral Seven (ⅶ)

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

What You'll Learn

How to display the small Roman numeral seven (ⅶ) 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 (\2176 in content).

⚡ Quick Reference — ⅶ Entity

Unicode U+2176

Number Forms block

Hex Code ⅶ

Hexadecimal reference

HTML Code ⅶ

Decimal reference

CSS Code \2176

Use in CSS content

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

Complete HTML Example

This example demonstrates ⅶ using hexadecimal code, decimal HTML code, and a CSS content escape on a pseudo-element:

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

<p>Small Roman Numeral Seven using Hexa Decimal: &#x2176;</p>
<p>Small Roman Numeral Seven using HTML Code: &#8566;</p>
<p id="point">Small Roman Numeral Seven using CSS Entity: </p>

</body>
</html>
Try It Yourself

🌐 Browser Support

The character ⅶ (U+2176) is supported in all modern browsers. Rendering depends on font support for the Number Forms block, so include a sensible fallback font stack:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See ⅶ rendered in a few practical contexts:

Outline style i. Intro ii. Setup iii. Basics ⅳ. Deep dive ⅴ. Review ⅵ. Polish ⅶ. Summary
Large glyph
Inline text See Appendix ⅶ for details.
Typography note ⅶ is a single glyph; it can differ from typing three Latin letters “vii”.

🧠 How It Works

1

Hexadecimal Code

&#x2176; references Unicode 2176 in hexadecimal to produce the glyph in HTML.

HTML markup
2

Decimal HTML Code

&#8566; uses the decimal code point value 8566 to render the same character.

HTML markup
3

CSS Entity (Escape)

\2176 is used in CSS (often in content) to generate ⅶ in pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All methods render . Unicode is U+2176 (Number Forms). There is no named HTML entity for this character.

Use Cases

The small Roman numeral seven (ⅶ) commonly appears in the following scenarios:

📋 Outlines

Hierarchical numbering in documents (i, ii, iii, ⅳ, ⅴ, ⅵ, ⅶ).

📑 Table of Contents

Front-matter numbering where lower-roman is conventional.

⚖️ Legal & Academic

Clauses, sub-sections, and citations that use roman numerals.

📝 Captions

Figure/Table labels like “Figure ⅶ”.

📚 Publishing

Volumes, parts, and stylistic numbering in books (e.g., Volume ⅶ).

🎨 Typography

Use a single glyph instead of plain “vii” for consistent roman spacing.

💡 Best Practices

Do

  • Use <ol style="list-style-type: lower-roman"> when it’s truly a list
  • Use numeric references (&#x2176; / &#8566;) 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 three Latin letters “v” + “i” + “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

1

Use numeric references in HTML

&#x2176; &#8566;
2

For CSS, use the escape in the content property

\2176
3

Unicode U+2176 is in Number Forms

4

ⅶ is a single roman glyph, not three letters

5

There is no named HTML entity for ⅶ

❓ Frequently Asked Questions

Use &#x2176; (hex) or &#8566; (decimal) in HTML. In CSS, use \2176 in the content property. All render ⅶ.
U+2176 (hex 2176, decimal 8566). It’s part of the Number Forms Unicode block.
Use it for outlines, ordered lists, academic/legal numbering, table of contents numbering, and captions where lowercase Roman numerals are conventional.
HTML numeric references (&#8566; or &#x2176;) are used directly in markup. The CSS escape \2176 is used in stylesheets (often in content on pseudo-elements). Same glyph, different layer.
Number Forms characters like ⅶ are normally referenced using numeric Unicode codes. It’s standard to use &#x2176; or &#8566; instead of a named entity.

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