HTML Entity for Negative Circled Digit One (❶)

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 (❶)
U+2776Dingbats block
❶Hexadecimal reference
❶Decimal reference
—No named entity available
Name Value
──────────── ──────────
Unicode U+2776
Hex code ❶
HTML code ❶
Named entity —
CSS code \2776Complete HTML Example
This example renders ❶ using the hex entity, decimal entity, and a CSS escape on a pseudo-element:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2776";
}
</style>
</head>
<body>
<p>Negative Circled One using Hexa Decimal: ❶</p>
<p>Negative Circled One using HTML Code: ❶</p>
<p id="point">Negative Circled One using CSS Entity: </p>
</body>
</html>🌐 Browser Support
This Unicode symbol (❶) and its numeric entities are supported in modern browsers (rendering can vary slightly by font):
👀 Live Preview
See ❶ rendered in a few UI-friendly contexts:
🧠 How It Works
Hexadecimal Code
❶ uses the Unicode hexadecimal value 2776 to display ❶.
Decimal HTML Code
❶ uses the decimal Unicode value 10102 for the same character.
CSS Entity
\2776 is a CSS escape typically used in the content property of pseudo-elements.
Same visual result
All methods render ❶. Unicode U+2776 belongs to the Dingbats block.
Use Cases
Negative Circled Digit One (❶) is commonly used in:
Bold list markers like ❶ ❷ ❸ in docs and articles.
Step-by-step guides and onboarding checklists.
Highlight rankings, top picks, or priority ordering.
Visual section markers in outlines and navigation.
Number choices or options with filled circled digits.
Design-heavy content and presentations with bold markers.
💡 Best Practices
Do
- Use
❶or❶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
❶ is Unicode U+2776 (Dingbats)
U+2776 ❶ ❶Use CSS escape for generated content in content
\2776There is no named HTML entity for ❶
Font support matters—test across devices for consistent Dingbats rendering
❓ Frequently Asked Questions
❶ (hex), ❶ (decimal), or \2776 in CSS content. All render ❶.U+2776 (hex 2776, decimal 10102) in the Dingbats block.❶ or ❶.<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.
8 people found this page helpful
