HTML Entity for Dingbat Negative Circled Sans-Serif Digit Two (➋)

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

What You'll Learn

How to display dingbat negative circled sans-serif digit two (➋) 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 (\278B in content).

⚡ Quick Reference — ➋ Entity

Unicode U+278B

Dingbats block

Hex Code ➋

Hexadecimal reference

HTML Code ➋

Decimal reference

CSS Code \278B

Use in CSS content

Reference Table
Name           Value
────────────   ──────────
Unicode        U+278B
Hex code       ➋
HTML code      ➋
Named entity   (none)
CSS code       \278B
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: "\278B";
  }
 </style>
</head>
<body>
<p>Negative Circled Sans-Serif Digit Two using Hexa Decimal: &#x278B;</p>
<p>Negative Circled Sans-Serif Digit Two using HTML Code: &#10123;</p>
<p id="point">Negative Circled Sans-Serif Digit Two using CSS Entity: </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The character ➋ (U+278B) 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

&#x278B; references Unicode 278B in hexadecimal to produce the glyph in HTML.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity (Escape)

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

Use Cases

The negative circled sans-serif digit two (➋) 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 (&#x278B; / &#10123;) 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

&#x278B; &#10123;
2

For CSS, use the escape in the content property

\278B
3

Unicode U+278B 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 &#x278B; (hex) or &#10123; (decimal) in HTML. In CSS, use \278B in the content property. All render ➋.
U+278B (hex 278B, decimal 10123). 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 (&#10123; or &#x278B;) are used directly in markup. The CSS escape \278B 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 &#x278B; or &#10123; 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