HTML Entity for Roman Numeral One Thousand C D (ↀ)

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

What You'll Learn

How to display the roman numeral one thousand C D (ↀ) in HTML using hex, decimal, and CSS entity methods. This character is part of the Number Forms Unicode block and represents 1000 in an alternate roman numeral form sometimes referred to as the C D form.

ↀ has no named HTML entity, so you’ll use numeric references (ↀ or ↀ) or a CSS escape (\2180 in content).

⚡ Quick Reference — ↀ Entity

Unicode U+2180

Number Forms block

Hex Code ↀ

Hexadecimal reference

HTML Code ↀ

Decimal reference

CSS Code \2180

Use in CSS content

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

Complete HTML Example

This example demonstrates the roman numeral one thousand C D (ↀ) using hexadecimal code, decimal HTML code, and a CSS content escape on a pseudo-element:

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

<p>Roman One Thousand C D using Hexa Decimal: &#x2180;</p>
<p>Roman One Thousand C D using HTML Code: &#8576;</p>
<p id="point">Roman One Thousand C D using CSS Entity: </p>

</body>
</html>
Try It Yourself

🌐 Browser Support

The character ↀ (U+2180) 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 real-world contexts:

Inline text Volume ↀ: Collected Works
Large glyph
Numbering ↀ → 1000 (roman numeral one thousand C D)
Font fallback check If a font lacks Number Forms, the browser will use a fallback font to render ↀ.

🧠 How It Works

1

Hexadecimal Code

&#x2180; references Unicode 2180 in hexadecimal to produce the glyph in HTML.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity (Escape)

\2180 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+2180 (Number Forms). There is no named HTML entity for this character.

Use Cases

The roman numeral one thousand C D (ↀ) commonly appears in the following scenarios:

📄 Outlines & Numbering

Large divisions in structured documents using an alternate form for 1000.

🎓 Academic Content

Scholarly works where this Number Forms roman numeral is used for 1000.

📝 Figure/Section Labels

Formats like “Part ↀ” when the C D form is preferred.

🎨 Typography & Design

Stylistic numbering in design-heavy pages and headings.

📖 Publishing

Editions and layout conventions using special roman numeral forms.

✨ Specialized Notation

Contexts that explicitly prefer ↀ over the more common “M” for 1000.

💡 Best Practices

Do

  • Use &#x2180; or &#8576; consistently across your project
  • Confirm your font stack supports Number Forms (or provide fallbacks)
  • Provide context on first use (ↀ is less common than “M” for 1000)
  • Use CSS content for generated markers when appropriate
  • Test rendering in your chosen fonts across devices

Don’t

  • Assume every font supports ↀ (Number Forms coverage varies)
  • Mix hex and decimal references randomly within the same page
  • Use the CSS escape in HTML content (it belongs in CSS)
  • Use ↀ without explanation if it could confuse readers
  • Expect a named entity (there isn’t one for ↀ)

Key Takeaways

1

Use numeric references in HTML

&#x2180; &#8576;
2

For CSS, use the escape in the content property

\2180
3

Unicode U+2180 belongs to the Number Forms block

4

ↀ is an alternate form for 1000 (C D form)

5

There is no named HTML entity for ↀ

❓ Frequently Asked Questions

Use &#x2180; (hex) or &#8576; (decimal) in HTML. In CSS, use \2180 in the content property. All render ↀ.
U+2180 (hex 2180, decimal 8576). It’s part of the Number Forms Unicode block.
Use it in outlines, hierarchical lists, academic content, and typography where the C D form for 1000 is required.
HTML numeric references (&#8576; or &#x2180;) are used directly in markup. The CSS escape \2180 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 &#x2180; or &#8576; 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