HTML Entity for Dingbat Circled Sans-Serif Digit Nine (➈)

Beginner
⏱️ 5 min read
📚 Updated: Aug 2025
🎯 1 Code Example
Unicode U+2788

What You'll Learn

How to display dingbat circled sans-serif digit nine (➈) 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 (\2788 in content).

⚡ Quick Reference — ➈ Entity

Unicode U+2788

Dingbats block

Hex Code ➈

Hexadecimal reference

HTML Code ➈

Decimal reference

CSS Code \2788

Use in CSS content

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2788
Hex code       ➈
HTML code      ➈
Named entity   (none)
CSS code       \2788
1

Complete HTML Example

This example demonstrates ➈ using hexadecimal code, decimal HTML code, and a CSS content escape on a pseudo-element:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2788";
  }
 </style>
</head>
<body>

<p>Circled Sans-Serif Digit Nine using Hexa Decimal: &#x2788;</p>
<p>Circled Sans-Serif Digit Nine using HTML Code: &#10120;</p>
<p id="point">Circled Sans-Serif Digit Nine using CSS Entity: </p>

</body>
</html>
Try It Yourself

🌐 Browser Support

The character ➈ (U+2788) is supported in all modern browsers. Rendering depends on font support for the Dingbats block, so include a sensible fallback font stack:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See ➈ rendered in a few practical contexts:

Step label ➈ Review and publish
Large glyph
Inline UI Page of 10
Font fallback check If a font lacks Dingbats, the browser will use a fallback font to render ➈.

🧠 How It Works

1

Hexadecimal Code

&#x2788; references Unicode 2788 in hexadecimal to produce the glyph in HTML.

HTML markup
2

Decimal HTML Code

&#10120; uses the decimal code point value 10120 to render the same character.

HTML markup
3

CSS Entity (Escape)

\2788 is used in CSS (often in content) to generate ➈ in pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All methods render . Unicode is U+2788 (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 nine (➈) commonly appears in the following scenarios:

📋 Stylish lists

List markers or step numbers in design-heavy tutorials and onboarding.

📑 Decorative headings

Numbered sections or chapters with a circled sans-serif style.

🔢 Step indicators

Wizards, multi-step forms, or flows where step 9 is highlighted.

🎨 Design and UI

Badges, labels, or counters using a consistent circled-digit style.

📚 Educational content

Worksheets, quizzes, or exercises with dingbat-style question numbers.

🖨️ Pagination

Page 9 or item 9 in paginated or carousel interfaces.

💡 Best Practices

Do

  • Provide context like “Step 9” 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 (&#x2788; / &#10120;) for portability
  • Use CSS ::before/::after when 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

1

Use numeric references in HTML

&#x2788; &#10120;
2

For CSS, use the escape in the content property

\2788
3

Unicode U+2788 belongs to the Dingbats block

4

Ideal for step 9, badges, and compact UI numbering

5

There is no named HTML entity for ➈

❓ Frequently Asked Questions

Use &#x2788; (hex) or &#10120; (decimal) in HTML. In CSS, use \2788 in the content property. All render ➈.
U+2788 (hex 2788, decimal 10120). It’s part of the Dingbats Unicode block.
Use it for stylish lists, decorative headings, step indicators, badges, educational numbering, and pagination where a circled sans-serif nine fits the design.
HTML numeric references (&#10120; or &#x2788;) are used directly in markup. The CSS escape \2788 is used in stylesheets (often in content on pseudo-elements). Same glyph, different layer.
Dingbats characters like ➈ are normally referenced using numeric Unicode codes. It’s standard to use &#x2788; or &#10120; instead of a named entity.

Explore More HTML Entities!

Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful