HTML Entity for Dingbat Negative Circled Digit Five (❺)

What You'll Learn
How to display dingbat negative circled digit five (❺) 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 (\277A in content).
⚡ Quick Reference — ❺ Entity
U+277ADingbats block
❺Hexadecimal reference
❺Decimal reference
\277AUse in CSS content
Name Value
──────────── ──────────
Unicode U+277A
Hex code ❺
HTML code ❺
Named entity (none)
CSS code \277AComplete 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: "\277A";
}
</style>
</head>
<body>
<p>Negative Circled Digit Five using Hexa Decimal: ❺</p>
<p>Negative Circled Digit Five using HTML Code: ❺</p>
<p id="point">Negative Circled Digit Five using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The character ❺ (U+277A) 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 277A in hexadecimal to produce the glyph ❺ in HTML.
Decimal HTML Code
❺ uses the decimal code point value 10106 to render the same character.
CSS Entity (Escape)
\277A 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+277A (Dingbats). There is no named HTML entity for this character.
Use Cases
The negative circled digit five (❺) 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 5” 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
\277AUnicode U+277A 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 \277A in the content property. All render ❺.U+277A (hex 277A, decimal 10106). It’s part of the Dingbats Unicode block.❺ or ❺) are used directly in markup. The CSS escape \277A 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
