HTML Entity for Dingbat Negative Circled Sans-Serif Digit Nine (➒)

What You'll Learn
How to display dingbat negative circled sans-serif digit nine (➒) 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 (\2792 in content).
⚡ Quick Reference — ➒ Entity
U+2792Dingbats block
➒Hexadecimal reference
➒Decimal reference
\2792Use in CSS content
Name Value
──────────── ──────────
Unicode U+2792
Hex code ➒
HTML code ➒
Named entity (none)
CSS code \2792Complete 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: "\2792";
}
</style>
</head>
<body>
<p>Negative Circled Sans-Serif Digit Nine using Hexa Decimal: ➒</p>
<p>Negative Circled Sans-Serif Digit Nine using HTML Code: ➒</p>
<p id="point">Negative Circled Sans-Serif Digit Nine using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The character ➒ (U+2792) 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 2792 in hexadecimal to produce the glyph ➒ in HTML.
Decimal HTML Code
➒ uses the decimal code point value 10130 to render the same character.
CSS Entity (Escape)
\2792 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+2792 (Dingbats). Negative circled sans-serif digits 1–10 map to U+278A–U+2793. There is no named HTML entity for this character.
Use Cases
The negative circled sans-serif digit nine (➒) 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 on dark or colored backgrounds.
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.
Page 9 or item 9 in paginated or carousel interfaces with stronger emphasis.
Stylized numeric accents on headings, banners, or lists without images.
💡 Best Practices
Do
- Provide context like “Step 9” 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
\2792Unicode U+2792 belongs to the Dingbats block
Negative circled digits give higher visual contrast than outline circled styles
There is no named HTML entity for ➒
❓ Frequently Asked Questions
➒ (hex) or ➒ (decimal) in HTML. In CSS, use \2792 in the content property. All render ➒.U+2792 (hex 2792, decimal 10130). It’s part of the Dingbats Unicode block.➒ or ➒) are used directly in markup. The CSS escape \2792 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
