HTML Entity for Negative Circled Sans-Serif Digit One (➊)

What You'll Learn
How to display Negative Circled Sans‑Serif Digit One (➊) in HTML using Unicode entity methods: hex, decimal, and a CSS escape. This character is a common choice for step indicators, rankings, and bold list markers because it uses a filled circle.
The character is part of the Dingbats Unicode block and is referenced as U+278A.
⚡ Quick Reference — Negative Circled Sans-Serif Digit One (➊)
U+278ADingbats block
➊Hexadecimal reference
➊Decimal reference
—No named entity available
Name Value
──────────── ──────────
Unicode U+278A
Hex code ➊
HTML code ➊
Named entity —
CSS code \278AComplete 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: "\278A";
}
</style>
</head>
<body>
<p>Negative Circled Sans-Serif One using Hexa Decimal: ➊</p>
<p>Negative Circled Sans-Serif One using HTML Code: ➊</p>
<p id="point">Negative 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 278A to display ➊.
Decimal HTML Code
➊ uses the decimal Unicode value 10122 for the same character.
CSS Entity
\278A is a CSS escape typically used in the content property of pseudo-elements.
Same visual result
All methods render ➊. Unicode U+278A belongs to the Dingbats block.
Use Cases
Negative Circled Sans‑Serif 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+278A (Dingbats)
U+278A ➊ ➊Use CSS escape for generated content in content
\278AThere is no named HTML entity for ➊
Font support matters—test across devices for consistent Dingbats rendering
❓ Frequently Asked Questions
➊ (hex), ➊ (decimal), or \278A in CSS content. All render ➊.U+278A (hex 278A, decimal 10122) 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
