HTML Entity for Negative Circled Digit Ten (❿)

What You'll Learn
How to display Negative Circled 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/negative circled number stands out.
The character is part of the Dingbats Unicode block and is referenced as U+277F.
⚡ Quick Reference — Negative Circled Digit Ten (❿)
U+277FDingbats block
❿Hexadecimal reference
❿Decimal reference
—No named entity available
Name Value
──────────── ──────────
Unicode U+277F
Hex code ❿
HTML code ❿
Named entity —
CSS code \277FComplete 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: "\277F";
}
</style>
</head>
<body>
<p>Negative Circled Ten using Hexa Decimal: ❿</p>
<p>Negative Circled Ten using HTML Code: ❿</p>
<p id="point">Negative Circled 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 277F to display ❿.
Decimal HTML Code
❿ uses the decimal Unicode value 10111 for the same character.
CSS Entity
\277F is a CSS escape typically used in the content property of pseudo-elements.
Same visual result
All methods render ❿. Unicode U+277F belongs to the Dingbats block.
Use Cases
Negative Circled 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+277F (Dingbats)
U+277F ❿ ❿Use CSS escape for generated content in content
\277FThere is no named HTML entity for ❿
Font support matters—test across devices for consistent Dingbats rendering
❓ Frequently Asked Questions
❿ (hex), ❿ (decimal), or \277F in CSS content. All render ❿.U+277F (hex 277F, decimal 10111) 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
