HTML Entity for Dingbat Circled Sans-Serif Digit Four (➃)

What You'll Learn
How to display dingbat circled sans-serif digit four (➃) in HTML using hex, decimal, and CSS entity methods. This character lives in the Dingbats Unicode block and is popular for step indicators, UI badges, checklists, and decorative numbering.
➃ has no named HTML entity, so you’ll use numeric references (➃ or ➃) or a CSS escape (\2783 in content).
⚡ Quick Reference — ➃ Entity
U+2783Dingbats block
➃Hexadecimal reference
➃Decimal reference
\2783Use in CSS content
Name Value
──────────── ──────────
Unicode U+2783
Hex code ➃
HTML code ➃
Named entity (none)
CSS code \2783Complete 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: "\2783";
}
</style>
</head>
<body>
<p>Circled Sans-Serif Digit Four using Hexa Decimal: ➃</p>
<p>Circled Sans-Serif Digit Four using HTML Code: ➃</p>
<p id="point">Circled Sans-Serif Digit Four using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The character ➃ (U+2783) 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 2783 in hexadecimal to produce the glyph ➃ in HTML.
Decimal HTML Code
➃ uses the decimal code point value 10115 to render the same character.
CSS Entity (Escape)
\2783 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+2783 (Dingbats). There is no named HTML entity for this character.
Use Cases
The circled sans-serif digit four (➃) commonly appears in the following scenarios:
Number steps visually in tutorials, onboarding flows, and instructions (➀ ➁ ➂ ➃).
Small numeric markers in feature lists, highlights, or product specs without images.
Label choices like “Option ➃” in forms and surveys for a compact look.
Annotate diagrams, screenshots, or documentation with circled numbers.
Use circled digits as a design element for lists and outlines.
Multi-step navigation labels or progress UI with circled digits.
💡 Best Practices
Do
- Provide context like “Step 4” near the symbol when it conveys meaning
- Verify your fonts support Dingbats (or provide fallbacks)
- Use a consistent style set (circled digits) across the UI
- Prefer numeric references (
➃/➃) for portability - Use CSS
::before/::afterwhen the symbol is purely 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
\2783Unicode U+2783 belongs to the Dingbats block
Perfect for step indicators and compact UI numbering
There is no named HTML entity for ➃
❓ Frequently Asked Questions
➃ (hex) or ➃ (decimal) in HTML. In CSS, use \2783 in the content property. All render ➃.U+2783 (hex 2783, decimal 10115). It’s part of the Dingbats Unicode block.➃ or ➃) are used directly in markup. The CSS escape \2783 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
