HTML Entity for Dingbat Negative Circled Digit Seven (❼)

What You'll Learn
How to display dingbat negative circled digit seven (❼) 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 (\277C in content).
⚡ Quick Reference — ❼ Entity
U+277CDingbats block
❼Hexadecimal reference
❼Decimal reference
\277CUse in CSS content
Name Value
──────────── ──────────
Unicode U+277C
Hex code ❼
HTML code ❼
Named entity (none)
CSS code \277CComplete 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: "\277C";
}
</style>
</head>
<body>
<p>Negative Circled Digit Seven using Hexa Decimal: ❼</p>
<p>Negative Circled Digit Seven using HTML Code: ❼</p>
<p id="point">Negative Circled Digit Seven using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The character ❼ (U+277C) 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 277C in hexadecimal to produce the glyph ❼ in HTML.
Decimal HTML Code
❼ uses the decimal code point value 10108 to render the same character.
CSS Entity (Escape)
\277C 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+277C (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 seven (❼) 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 7” 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
\277CUnicode U+277C 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 \277C in the content property. All render ❼.U+277C (hex 277C, decimal 10108). It’s part of the Dingbats Unicode block.❼ or ❼) are used directly in markup. The CSS escape \277C 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
