HTML Entity for Negative Circled Digit One (❶)

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

What You'll Learn

How to display Negative Circled Digit One (❶) in HTML using Unicode entity methods: hex, decimal, and a CSS escape. This character is commonly used for step indicators, rankings, and high-visibility list markers thanks to its filled circle.

The character is part of the Dingbats Unicode block and is referenced as U+2776.

⚡ Quick Reference — Negative Circled Digit One (❶)

Unicode U+2776

Dingbats block

Hex Code ❶

Hexadecimal reference

HTML Code ❶

Decimal reference

Named Entity

No named entity available

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2776
Hex code       ❶
HTML code      ❶
Named entity   —
CSS code       \2776
1

Complete HTML Example

This example renders ❶ using the hex entity, decimal entity, and a CSS escape on a pseudo-element:

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

<p>Negative Circled One using Hexa Decimal: &#x2776;</p>
<p>Negative Circled One using HTML Code: &#10102;</p>
<p id="point">Negative Circled One using CSS Entity: </p>

</body>
</html>
Try It Yourself

🌐 Browser Support

This Unicode symbol (❶) and its numeric entities are supported in modern browsers (rendering can vary slightly by font):

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

👀 Live Preview

See ❶ rendered in a few UI-friendly contexts:

Step label ❶ Start here
Large glyph
Inline in text Steps: ❶ ❷ ❸
Monospace ❶ -> step 1
With entities Hex: ❶ | Decimal: ❶

🧠 How It Works

1

Hexadecimal Code

&#x2776; uses the Unicode hexadecimal value 2776 to display ❶.

HTML markup
2

Decimal HTML Code

&#10102; uses the decimal Unicode value 10102 for the same character.

HTML markup
3

CSS Entity

\2776 is a CSS escape typically used in the content property of pseudo-elements.

CSS stylesheet
=

Same visual result

All methods render . Unicode U+2776 belongs to the Dingbats block.

Use Cases

Negative Circled Digit One (❶) is commonly used in:

📋 Numbered Lists

Bold list markers like ❶ ❷ ❸ in docs and articles.

📌 Steps & Procedures

Step-by-step guides and onboarding checklists.

🏆 Rankings

Highlight rankings, top picks, or priority ordering.

📑 Table of Contents

Visual section markers in outlines and navigation.

🍽️ Menus & Options

Number choices or options with filled circled digits.

🎨 Decorative Numbering

Design-heavy content and presentations with bold markers.

💡 Best Practices

Do

  • Use &#x2776; or &#10102; consistently in your markup
  • Check font support for Dingbats on your target devices
  • Use semantic lists (<ol>) when structure matters, and reserve ❶ for styling
  • Use CSS escapes for generated markers in ::before/::after

Don’t

  • Assume there is a named entity for ❶ (there isn’t)
  • Rely on Dingbats without a sensible fallback font stack
  • Mix CSS escapes into HTML content (use them in stylesheets only)
  • Use decorative numbering where plain text is clearer (e.g. formal docs)

Key Takeaways

1

❶ is Unicode U+2776 (Dingbats)

U+2776 &#x2776; &#10102;
2

Use CSS escape for generated content in content

\2776
3

There is no named HTML entity for ❶

4

Font support matters—test across devices for consistent Dingbats rendering

❓ Frequently Asked Questions

Use &#x2776; (hex), &#10102; (decimal), or \2776 in CSS content. All render ❶.
U+2776 (hex 2776, decimal 10102) in the Dingbats block.
No. Use numeric references like &#x2776; or &#10102;.
It depends on available fonts. If your primary font lacks the glyph, browsers fall back to another font, which may change the look and weight.
Use <ol> for semantics and accessibility. Use ❶ as a styling choice for UI labels or decorative numbering (or generate it via CSS) when appropriate.

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