HTML Entity for Dingbat Negative Circled Sans-Serif Digit Five (➎)

What You'll Learn
How to display dingbat negative circled sans-serif digit five (➎) in HTML using hex, decimal, and CSS entity methods. This character lives in the Dingbats Unicode block and is popular for step indicators, UI badges, checklists, and decorative numbering with a stronger (negative) fill style.
➎ has no named HTML entity, so you’ll use numeric references (➎ or ➎) or a CSS escape (\278E in content).
⚡ Quick Reference — ➎ Entity
U+278EDingbats block
➎Hexadecimal reference
➎Decimal reference
\278EUse in CSS content
Name Value
──────────── ──────────
Unicode U+278E
Hex code ➎
HTML code ➎
Named entity (none)
CSS code \278EComplete HTML Example
This example demonstrates ➎ using hexadecimal code, decimal HTML code, and a CSS content escape on a pseudo-element:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\278E";
}
</style>
</head>
<body>
<p>Negative Circled Sans-Serif Digit Five using Hexa Decimal: ➎</p>
<p>Negative Circled Sans-Serif Digit Five using HTML Code: ➎</p>
<p id="point">Negative Circled Sans-Serif Digit Five using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The character ➎ (U+278E) is supported in all modern browsers. Rendering depends on font support for the Dingbats block, so include a sensible fallback font stack:
👀 Live Preview
See ➎ rendered in a few practical contexts:
🧠 How It Works
Hexadecimal Code
➎ references Unicode 278E in hexadecimal to produce the glyph ➎ in HTML.
Decimal HTML Code
➎ uses the decimal code point value 10126 to render the same character.
CSS Entity (Escape)
\278E is used in CSS (often in content) to generate ➎ in pseudo-elements like ::before and ::after.
Same visual result
All methods render ➎. Unicode is U+278E (Dingbats). There is no named HTML entity for this character.
Use Cases
The negative circled sans-serif digit five (➎) commonly appears in the following scenarios:
Number steps visually when you want higher contrast markers (➊ ➋ ➌ ➍ ➎).
Show counts and emphasis with a bold, filled circled number.
Label choices like “Option ➎” with a clear visual marker.
Annotate diagrams and docs with high-contrast circled numbers.
Use negative circled digits as checklist markers or step counters.
Multi-step navigation labels or progress UI that needs stronger emphasis.
Stylized numeric accents on headings, banners, or lists without images.
💡 Best Practices
Do
- Provide context like “Step 5” near the symbol when it conveys meaning
- Verify your fonts support Dingbats (or provide fallbacks)
- Use the negative circled style intentionally (it has more visual weight)
- Prefer numeric references (
➎/➎) for portability - Use CSS
::before/::afterwhen the symbol is decorative
Don’t
- Replace semantic numbering for real lists (use
<ol>where appropriate) - Mix entity styles randomly within the same UI
- Assume all fonts render Dingbats identically
- Use the CSS escape inside HTML content
- Rely on ➎ alone where clarity matters
Key Takeaways
Use numeric references in HTML
➎ ➎For CSS, use the escape in the content property
\278EUnicode U+278E belongs to the Dingbats block
Negative circled digits give higher visual contrast
There is no named HTML entity for ➎
❓ Frequently Asked Questions
➎ (hex) or ➎ (decimal) in HTML. In CSS, use \278E in the content property. All render ➎.U+278E (hex 278E, decimal 10126). It’s part of the Dingbats Unicode block.➎ or ➎) are used directly in markup. The CSS escape \278E is used in stylesheets (often in content on pseudo-elements). Same glyph, different layer.➎ or ➎ instead of a named entity.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.
8 people found this page helpful
