HTML Entity for Dingbat Circled Sans-Serif Digit Five (➄)

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

What You'll Learn

How to display dingbat circled sans-serif digit five (➄) 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 modern typographic numbering.

➄ has no named HTML entity, so you’ll use numeric references (➄ or ➄) or a CSS escape (\2784 in content).

⚡ Quick Reference — ➄ Entity

Unicode U+2784

Dingbats block

Hex Code ➄

Hexadecimal reference

HTML Code ➄

Decimal reference

CSS Code \2784

Use in CSS content

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2784
Hex code       ➄
HTML code      ➄
Named entity   (none)
CSS code       \2784
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: "\2784";
  }
 </style>
</head>
<body>

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

</body>
</html>
Try It Yourself

🌐 Browser Support

The character ➄ (U+2784) 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 Badge: Featured
Font fallback check If a font lacks Dingbats, the browser will use a fallback font to render ➄.

🧠 How It Works

1

Hexadecimal Code

&#x2784; references Unicode 2784 in hexadecimal to produce the glyph in HTML.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity (Escape)

\2784 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+2784 (Dingbats). There is no named HTML entity for this character.

Use Cases

The circled sans-serif digit five (➄) commonly appears in the following scenarios:

🧩 Step-by-step

Number steps visually in tutorials and onboarding (➀ ➁ ➂ ➃ ➄).

🏷️ UI Badges

Counts, highlights, or featured items with a sans-serif circled numeral.

✅ Checklists

Checklist-style content where circled digits stay readable and modern.

📝 Callouts

Annotate diagrams, screenshots, or documentation with circled numbers.

🧪 Quizzes

Label options like “Choice ➄” for a compact, distinct design.

🧭 Navigation

Progress labels in multi-step forms or wizards where clarity matters.

🎨 Decorative Numbering

Stylized numeric accents on headings, banners, or lists without images.

💡 Best Practices

Do

  • Provide context like “Step 5” 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 (&#x2784; / &#10116;) 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

&#x2784; &#10116;
2

For CSS, use the escape in the content property

\2784
3

Unicode U+2784 belongs to the Dingbats block

4

Ideal for step five in flows, badges, and compact UI numbering

5

There is no named HTML entity for ➄

❓ Frequently Asked Questions

Use &#x2784; (hex) or &#10116; (decimal) in HTML. In CSS, use \2784 in the content property. All render ➄.
U+2784 (hex 2784, decimal 10116). It’s part of the Dingbats Unicode block.
Use it for step-by-step instructions, UI badges, checklists, numbered callouts, quizzes, labels, and decorative lists where you want a clean sans-serif circled numeral without images.
HTML numeric references (&#10116; or &#x2784;) are used directly in markup. The CSS escape \2784 is used in stylesheets (often in content on pseudo-elements). Same glyph, different layer.
Named entities are common for ASCII, Latin-1, and widely used symbols. Dingbats like ➄ use numeric codes (hex or decimal) because they live in the Dingbats block—this is normal for such characters.

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