HTML Entity for Dingbat Negative Circled Digit Seven (❼)

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

What You'll Learn

How to display dingbat negative circled digit seven (❼) in HTML using hex, decimal, and CSS entity methods. This character is part of the Dingbats Unicode block and is commonly used for step indicators, checklists, UI badges, and high-contrast numbering.

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

⚡ Quick Reference — ❼ Entity

Unicode U+277C

Dingbats block

Hex Code ❼

Hexadecimal reference

HTML Code ❼

Decimal reference

CSS Code \277C

Use in CSS content

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

<p>Negative Circled Digit Seven using Hexa Decimal: &#x277C;</p>
<p>Negative Circled Digit Seven using HTML Code: &#10108;</p>
<p id="point">Negative Circled Digit Seven using CSS Entity: </p>

</body>
</html>
Try It Yourself

🌐 Browser Support

The character ❼ (U+277C) 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 ❼ Go live
Large glyph
Inline UI Badge: Featured
Contrast style Negative circled digits are great when you want a stronger marker than outline circled styles.

🧠 How It Works

1

Hexadecimal Code

&#x277C; references Unicode 277C in hexadecimal to produce the glyph in HTML.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity (Escape)

\277C 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+277C (Dingbats). Negative circled digits 1–10 map to U+2776U+277F. There is no named HTML entity for this character.

Use Cases

The negative circled digit seven (❼) commonly appears in the following scenarios:

🧩 Step-by-step

Number steps visually when you want higher contrast markers (❶ … ❼).

🏷️ UI Badges

Show counts and emphasis with a bold, filled circled number.

🧪 Quizzes

Label choices like “Option ❼” with a clear visual marker.

📝 Callouts

Annotate diagrams and docs with high-contrast circled numbers.

📋 Checklists

Use negative circled digits as checklist markers or step counters.

🧭 Navigation

Multi-step navigation labels or progress UI that needs stronger emphasis.

🎨 Decorative Numbering

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

💡 Best Practices

Do

  • Provide context like “Step 7” near the symbol when it conveys meaning
  • Verify your fonts support Dingbats (or provide fallbacks)
  • Use the negative circled style intentionally (it has more visual weight)
  • Prefer numeric references (&#x277C; / &#10108;) 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

&#x277C; &#10108;
2

For CSS, use the escape in the content property

\277C
3

Unicode U+277C belongs to the Dingbats block

4

Negative circled digits give higher visual contrast

5

There is no named HTML entity for ❼

❓ Frequently Asked Questions

Use &#x277C; (hex) or &#10108; (decimal) in HTML. In CSS, use \277C in the content property. All render ❼.
U+277C (hex 277C, decimal 10108). It’s part of the Dingbats Unicode block.
Use it for step indicators, UI badges, checklists, quizzes/options, numbered callouts, labels, and decorative lists when you want a higher-contrast marker.
HTML numeric references (&#10108; or &#x277C;) are used directly in markup. The CSS escape \277C 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 &#x277C; or &#10108; 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