HTML Entity for Dingbat Negative Circled Sans-Serif Digit Three (➌)

What You'll Learn
How to display dingbat negative circled sans-serif digit three (➌) in HTML using hex, decimal, and CSS entity methods. This character is commonly used for step markers, checklists, and UI badges because it has a filled circle and reads well in modern interfaces.
➌ has no named HTML entity, so you’ll use numeric references (➌ or ➌) or a CSS escape (\278C in content).
⚡ Quick Reference — ➌ Entity
U+278CDingbats block
➌Hexadecimal reference
➌Decimal reference
\278CUse in CSS content
Name Value
──────────── ──────────
Unicode U+278C
Hex code ➌
HTML code ➌
Named entity (none)
CSS code \278CComplete 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: "\278C";
}
</style>
</head>
<body>
<p>Negative Circled Sans-Serif Digit Three using Hexa Decimal: ➌</p>
<p>Negative Circled Sans-Serif Digit Three using HTML Code: ➌</p>
<p id="point">Negative Circled Sans-Serif Digit Three using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The character ➌ (U+278C) 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 278C in hexadecimal to produce the glyph ➌ in HTML.
Decimal HTML Code
➌ uses the decimal code point value 10124 to render the same character.
CSS Entity (Escape)
\278C 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+278C (Dingbats). There is no named HTML entity for this character.
Use Cases
The negative circled sans-serif digit three (➌) is commonly used in the following scenarios:
Highlight steps in guides and onboarding flows with a bold marker (➊ ➋ ➌).
Use in checklist-style content where high contrast improves scanning.
Counts, highlights, or featured items without images.
Annotate diagrams, screenshots, or documentation with numbered callouts.
Label options like “Choice ➌” for a compact, distinct design.
Use as a bold numeric accent in headings and UI labels.
💡 Best Practices
Do
- Provide context like “Step 3” near the symbol when it conveys meaning
- Verify fonts support Dingbats on your target devices
- Use a consistent set (negative circled sans-serif digits) across the page
- 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
\278CUnicode U+278C belongs to the Dingbats block
Great for step markers and UI badges because of the filled circle
There is no named HTML entity for ➌
❓ Frequently Asked Questions
➌ (hex) or ➌ (decimal) in HTML. In CSS, use \278C in the content property. All render ➌.U+278C (hex 278C, decimal 10124). It’s part of the Dingbats Unicode block.➌ or ➌) are used directly in markup. The CSS escape \278C 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
