HTML Entity for Dingbat Negative Circled Digit Three (❸)

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

What You'll Learn

How to display the dingbat negative circled digit three (❸) in HTML using hex, decimal, and CSS entity methods. This character belongs to the Dingbats Unicode block and is often used as a bold, high-contrast step marker in UI badges, checklists, numbered callouts, and decorative numbering.

❸ has no named HTML entity. You’ll typically use numeric references (❸ or ❸) or a CSS escape (\2778 in content).

⚡ Quick Reference — ❸ Entity

Unicode U+2778

Dingbats block

Hex Code ❸

Hexadecimal reference

HTML Code ❸

Decimal reference

CSS Code \2778

Use in CSS content

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

Complete HTML Example

This example demonstrates the dingbat negative circled digit three (❸) using hexadecimal code, decimal HTML code, and a CSS content escape on a pseudo-element:

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

<p>Negative Circled Digit Three using Hexa Decimal: &#x2778;</p>
<p>Negative Circled Digit Three using HTML Code: &#10104;</p>
<p id="point">Negative Circled Digit Three using CSS Entity: </p>

</body>
</html>
Try It Yourself

🌐 Browser Support

The ❸ character (Unicode U+2778) is supported in all modern browsers. If a font doesn’t include the Dingbats glyph, the browser may fall back to another font.

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the negative circled digit three rendered live in different contexts:

Inline text Step ❸: Finish and submit.
Large glyph
Checklist ❶ Install • ❷ Configure • ❸ Launch
Monospace Step ❸ → done
Font fallback check If a font lacks Dingbats, the browser will use a fallback font to render ❸.

🧠 How It Works

1

Hexadecimal Code

&#x2778; references Unicode 2778 in hexadecimal, producing the glyph in your HTML.

HTML markup
2

Decimal HTML Code

&#10104; references the same Unicode code point using the decimal value 10104.

HTML markup
3

CSS Entity (Escape)

\2778 is used in CSS (most often in the content property) to generate ❸ without adding extra HTML.

CSS stylesheet
=

Same visual result

All methods produce . The Unicode value is U+2778 in the Dingbats block. There is no named HTML entity for this character.

Use Cases

The negative circled digit three (❸) is commonly used in the following scenarios:

🪑 Step Indicators

Highlight steps in guides and onboarding flows with bold numbered markers (e.g., ❶ ❷ ❸).

✅ Checklists

Use in checklist-style content where the filled circle makes the number stand out.

🏷️ UI Badges

Show counts, highlights, or featured items with a prominent circled number.

🧩 Numbered Callouts

Annotate images, docs, or screenshots with high-contrast numeric callouts.

🧪 Quizzes & Options

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

📍 Navigation Labels

Use as progress labels in multi-step forms or wizards where visibility matters.

💡 Best Practices

Do

  • Use &#x2778; or &#10104; for reliable HTML rendering
  • Use the CSS escape \2778 in content for decorative markers
  • Pair ❸ with readable text like “Step 3” on first use
  • Test across devices to ensure consistent font fallback
  • Keep your numbering style consistent (don’t mix different circled-digit sets)

Don’t

  • Assume every font renders Dingbats identically
  • Use the CSS escape \2778 directly in HTML text
  • Rely on ❸ alone to convey meaning without context
  • Mix hex/decimal styles randomly in the same document
  • Use image-based badges when a text symbol is sufficient

Key Takeaways

1

Two HTML numeric references render ❸

&#x2778; &#10104;
2

For CSS stylesheets, use the escape in the content property

\2778
3

Unicode U+2778 belongs to the Dingbats block

4

There is no named HTML entity for this Dingbats character

5

Use ❸ for clear step markers, callouts, badges, and lists—without images

❓ Frequently Asked Questions

Use &#x2778; (hex) or &#10104; (decimal) in HTML. For CSS, use \2778 in the content property. All methods render ❸.
U+2778 (hex 2778, decimal 10104). It’s part of the Dingbats block.
Use it for step-by-step instructions, UI badges, checklists, numbered callouts, quizzes, labels, and decorative lists where you want a bold circled numeral style.
HTML numeric references (&#10104; or &#x2778;) go directly in markup. The CSS escape \2778 is used in stylesheets (usually in content on ::before/::after). Same visual result, different layers of the stack.
Many Dingbats symbols don’t have named entities and are typically referenced via numeric codes. For ❸, use hex &#x2778; or decimal &#10104;.

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