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

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

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

Unicode U+278C

Dingbats block

Hex Code ➌

Hexadecimal reference

HTML Code ➌

Decimal reference

CSS Code \278C

Use in CSS content

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

<p>Negative Circled Sans-Serif Digit Three using Hexa Decimal: &#x278C;</p>
<p>Negative Circled Sans-Serif Digit Three using HTML Code: &#10124;</p>
<p id="point">Negative Circled Sans-Serif Digit Three using CSS Entity: </p>

</body>
</html>
Try It Yourself

🌐 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:

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 ➌ Finish
Large glyph
Inline UI Steps: ➊ ➋ ➌
With entities Hex: ➌ | Decimal: ➌

🧠 How It Works

1

Hexadecimal Code

&#x278C; references Unicode 278C in hexadecimal to produce the glyph in HTML.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity (Escape)

\278C 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+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:

🧩 Step Indicators

Highlight steps in guides and onboarding flows with a bold marker (➊ ➋ ➌).

✅ Checklists

Use in checklist-style content where high contrast improves scanning.

🏷️ UI Badges

Counts, highlights, or featured items without images.

📝 Callouts

Annotate diagrams, screenshots, or documentation with numbered callouts.

🧪 Quizzes & Options

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

🎨 Decorative Numbering

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 (&#x278C; / &#10124;) for portability
  • Use CSS ::before/::after when 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

1

Use numeric references in HTML

&#x278C; &#10124;
2

For CSS, use the escape in the content property

\278C
3

Unicode U+278C belongs to the Dingbats block

4

Great for step markers and UI badges because of the filled circle

5

There is no named HTML entity for ➌

❓ Frequently Asked Questions

Use &#x278C; (hex) or &#10124; (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.
Use it for step-by-step instructions, UI badges, checklists, callouts, quizzes/options, and decorative lists where a filled circled number is helpful.
HTML numeric references (&#10124; or &#x278C;) are used directly in markup. The CSS escape \278C 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 &#x278C; or &#10124; 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