HTML Entity for Dingbat Negative Circled Digit Six (❻)

What You'll Learn
How to display dingbat negative circled digit six (❻) in HTML using hex, decimal, and CSS entity methods. This character is part of the Dingbats Unicode block and is commonly used for step indicators, checklists, UI badges, and high-contrast numbering.
❻ has no named HTML entity, so you’ll use numeric references (❻ or ❻) or a CSS escape (\277B in content).
⚡ Quick Reference — ❻ Entity
U+277BDingbats block
❻Hexadecimal reference
❻Decimal reference
\277BUse in CSS content
Name Value
──────────── ──────────
Unicode U+277B
Hex code ❻
HTML code ❻
Named entity (none)
CSS code \277BComplete 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: "\277B";
}
</style>
</head>
<body>
<p>Negative Circled Digit Six using Hexa Decimal: ❻</p>
<p>Negative Circled Digit Six using HTML Code: ❻</p>
<p id="point">Negative Circled Digit Six using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The character ❻ (U+277B) 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 277B in hexadecimal to produce the glyph ❻ in HTML.
Decimal HTML Code
❻ uses the decimal code point value 10107 to render the same character.
CSS Entity (Escape)
\277B 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+277B (Dingbats). Negative circled digits 1–10 map to U+2776–U+277F. There is no named HTML entity for this character.
Use Cases
The negative circled digit six (❻) 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.
Bold numeric accents on headings, banners, or lists without images.
💡 Best Practices
Do
- Provide context like “Step 6” 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
\277BUnicode U+277B 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 \277B in the content property. All render ❻.U+277B (hex 277B, decimal 10107). It’s part of the Dingbats Unicode block.❻ or ❻) are used directly in markup. The CSS escape \277B 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
