HTML Entity for Negative Circled Sans-Serif Digit Ten (➓)

What You'll Learn
How to display Negative Circled Sans‑Serif Digit Ten (➓) in HTML using numeric entities (hex and decimal) and a CSS escape. This symbol is used for step markers, rankings, and highlighted lists where a filled/circled number stands out.
The character is part of the Dingbats Unicode block and is referenced as U+2793.
⚡ Quick Reference — Negative Circled Sans-Serif Digit Ten (➓)
U+2793Dingbats block
➓Hexadecimal reference
➓Decimal reference
—No named entity available
Name Value
──────────── ──────────
Unicode U+2793
Hex code ➓
HTML code ➓
Named entity —
CSS code \2793Complete 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: "\2793";
}
</style>
</head>
<body>
<p>Negative Circled Sans-Serif Ten using Hexa Decimal: ➓</p>
<p>Negative Circled Sans-Serif Ten using HTML Code: ➓</p>
<p id="point">Negative Circled Sans-Serif Ten 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 2793 to display ➓.
Decimal HTML Code
➓ uses the decimal Unicode value 10131 for the same character.
CSS Entity
\2793 is a CSS escape typically used in the content property of pseudo-elements.
Same visual result
All methods render ➓. Unicode U+2793 belongs to the Dingbats block.
Use Cases
Negative Circled Sans‑Serif Digit Ten (➓) is commonly used in:
Styled list markers like ➊–➓ in docs and articles.
Step 10 / final step in how-to flows.
Top-ten lists, leaderboards, and scoreboards.
Section markers in outlines and navigation.
Number choices or options up to 10.
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. formal docs)
Key Takeaways
➓ is Unicode U+2793 (Dingbats)
U+2793 ➓ ➓Use CSS escape for generated content in content
\2793There is no named HTML entity for ➓
Font support matters—test across devices for consistent Dingbats rendering
❓ Frequently Asked Questions
➓ (hex), ➓ (decimal), or \2793 in CSS content. All render ➓.U+2793 (hex 2793, decimal 10131) 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
