HTML Entity for Circled Sans-Serif Digit One (➀)

What You'll Learn
How to display Circled Sans‑Serif Digit One (➀) in HTML using Unicode entity methods: hex, decimal, and a CSS escape. This dingbat-style number is commonly used for steps, rankings, and styled list markers.
The character is part of the Dingbats Unicode block and is referenced as U+2780.
⚡ Quick Reference — Circled Sans-Serif Digit One (➀)
U+2780Dingbats block
➀Hexadecimal reference
➀Decimal reference
—No named entity available
Name Value
──────────── ──────────
Unicode U+2780
Hex code ➀
HTML code ➀
Named entity —
CSS code \2780Complete 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: "\2780";
}
</style>
</head>
<body>
<p>Circled Sans-Serif One using Hexa Decimal: ➀</p>
<p>Circled Sans-Serif One using HTML Code: ➀</p>
<p id="point">Circled Sans-Serif 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 2780 to display ➀.
Decimal HTML Code
➀ uses the decimal Unicode value 10112 for the same character.
CSS Entity
\2780 is a CSS escape typically used in the content property of pseudo-elements.
Same visual result
All methods render ➀. Unicode U+2780 belongs to the Dingbats block.
Use Cases
Circled Sans‑Serif Digit One (➀) is commonly used in:
Styled list markers like ➀ ➁ ➂ in docs and articles.
Step-by-step tutorials and onboarding flows.
Visual ranking indicators in UI and dashboards.
Section markers in outlines and navigation.
Number choices or options with circled digits.
Design-heavy content and presentations.
💡 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. legal docs)
Key Takeaways
➀ is Unicode U+2780 (Dingbats)
U+2780 ➀ ➀Use CSS escape for generated content in content
\2780There is no named HTML entity for ➀
Font support matters—test across devices for consistent Dingbats rendering
❓ Frequently Asked Questions
➀ (hex), ➀ (decimal), or \2780 in CSS content. All render ➀.U+2780 (hex 2780, decimal 10112) 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
