HTML Entity for Dingbat Negative Circled Digit Four (❹)

What You'll Learn
How to display dingbat negative circled digit four (❹) 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 (\2779 in content).
⚡ Quick Reference — ❹ Entity
U+2779Dingbats block
❹Hexadecimal reference
❹Decimal reference
\2779Use in CSS content
Name Value
──────────── ──────────
Unicode U+2779
Hex code ❹
HTML code ❹
Named entity (none)
CSS code \2779Complete 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: "\2779";
}
</style>
</head>
<body>
<p>Negative Circled Digit Four using Hexa Decimal: ❹</p>
<p>Negative Circled Digit Four using HTML Code: ❹</p>
<p id="point">Negative Circled Digit Four using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The character ❹ (U+2779) 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 2779 in hexadecimal to produce the glyph ❹ in HTML.
Decimal HTML Code
❹ uses the decimal code point value 10105 to render the same character.
CSS Entity (Escape)
\2779 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+2779 (Dingbats). There is no named HTML entity for this character.
Use Cases
The negative circled digit four (❹) 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.
💡 Best Practices
Do
- Provide context like “Step 4” 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
\2779Unicode U+2779 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 \2779 in the content property. All render ❹.U+2779 (hex 2779, decimal 10105). It’s part of the Dingbats Unicode block.❹ or ❹) are used directly in markup. The CSS escape \2779 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
