HTML Entity for Dingbat Negative Circled Digit Two (❷)

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

What You'll Learn

How to display the dingbat negative circled digit two (❷) 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 (\2777 in content).

⚡ Quick Reference — ❷ Entity

Unicode U+2777

Dingbats block

Hex Code ❷

Hexadecimal reference

HTML Code ❷

Decimal reference

CSS Code \2777

Use in CSS content

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

Complete HTML Example

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

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

<p>Negative Circled Digit Two using Hexa Decimal: &#x2777;</p>
<p>Negative Circled Digit Two using HTML Code: &#10103;</p>
<p id="point">Negative Circled Digit Two using CSS Entity: </p>

</body>
</html>
Try It Yourself

🌐 Browser Support

The ❷ character (Unicode U+2777) 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 two rendered live in different contexts:

Inline text Step ❷: Review and confirm your settings.
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

&#x2777; references Unicode 2777 in hexadecimal, producing the glyph in your HTML.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity (Escape)

\2777 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+2777 in the Dingbats block. There is no named HTML entity for this character.

Use Cases

The negative circled digit two (❷) commonly appears 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 &#x2777; or &#10103; for reliable HTML rendering
  • Use the CSS escape \2777 in content for decorative markers
  • Pair ❷ with readable text like “Step 2” 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 \2777 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 ❷

&#x2777; &#10103;
2

For CSS stylesheets, use the escape in the content property

\2777
3

Unicode U+2777 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 &#x2777; (hex) or &#10103; (decimal) in HTML. For CSS, use \2777 in the content property. All methods render ❷.
U+2777 (hex 2777, decimal 10103). 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 (&#10103; or &#x2777;) go directly in markup. The CSS escape \2777 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 &#x2777; or decimal &#10103;.

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