HTML Entity for Dingbat Circled Sans-Serif Digit Eight (➇)

What You'll Learn
How to display dingbat circled sans-serif digit eight (➇) 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, quizzes, pagination, and decorative numbering.
➇ has no named HTML entity, so you’ll use numeric references (➇ or ➇) or a CSS escape (\2787 in content).
⚡ Quick Reference — ➇ Entity
U+2787Dingbats block
➇Hexadecimal reference
➇Decimal reference
\2787Use in CSS content
Name Value
──────────── ──────────
Unicode U+2787
Hex code ➇
HTML code ➇
Named entity (none)
CSS code \2787Complete 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: "\2787";
}
</style>
</head>
<body>
<p>Circled Sans-Serif Digit Eight using Hexa Decimal: ➇</p>
<p>Circled Sans-Serif Digit Eight using HTML Code: ➇</p>
<p id="point">Circled Sans-Serif Digit Eight using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The character ➇ (U+2787) 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 2787 in hexadecimal to produce the glyph ➇ in HTML.
Decimal HTML Code
➇ uses the decimal code point value 10119 to render the same character.
CSS Entity (Escape)
\2787 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+2787 (Dingbats). Circled sans-serif digits ➀–➉ map to U+2780–U+2789. There is no named HTML entity for this character.
Use Cases
The circled sans-serif digit eight (➇) commonly appears in the following scenarios:
List markers or step numbers in design-heavy tutorials and onboarding.
Numbered sections or chapters with a circled sans-serif style.
Wizards, multi-step forms, or flows where step 8 is highlighted.
Badges, labels, or counters using a consistent circled-digit style.
Worksheets, quizzes, or exercises with dingbat-style question numbers.
Page 8 or item 8 in paginated or carousel interfaces.
💡 Best Practices
Do
- Provide context like “Step 8” 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
\2787Unicode U+2787 belongs to the Dingbats block
Ideal for step 8, badges, and compact UI numbering
There is no named HTML entity for ➇
❓ Frequently Asked Questions
➇ (hex) or ➇ (decimal) in HTML. In CSS, use \2787 in the content property. All render ➇.U+2787 (hex 2787, decimal 10119). It’s part of the Dingbats Unicode block.➇ or ➇) are used directly in markup. The CSS escape \2787 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
