HTML Entity for Circled Sans-Serif Digit Ten (➉)

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

What You'll Learn

How to display Circled Sans‑Serif Digit Ten (➉) in HTML using Unicode entity methods: hex, decimal, and a CSS escape. This dingbat-style number is commonly used for steps, rankings, and styled list markers.

The character is part of the Dingbats Unicode block and is referenced as U+2789.

⚡ Quick Reference — Circled Sans-Serif Digit Ten (➉)

Unicode U+2789

Dingbats block

Hex Code ➉

Hexadecimal reference

HTML Code ➉

Decimal reference

Named Entity

No named entity available

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2789
Hex code       ➉
HTML code      ➉
Named entity   —
CSS code       \2789
1

Complete HTML Example

This example renders ➉ using the hex entity, decimal entity, and a CSS escape on a pseudo-element:

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

<p>Circled Sans-Serif Ten using Hexa Decimal: &#x2789;</p>
<p>Circled Sans-Serif Ten using HTML Code: &#10121;</p>
<p id="point">Circled Sans-Serif Ten using CSS Entity: </p>

</body>
</html>
Try It Yourself

🌐 Browser Support

This Unicode symbol (➉) and its numeric entities are supported in modern browsers (rendering can vary slightly by font):

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See ➉ rendered in a few UI-friendly contexts:

Step label ➉ Final step
Large glyph
Ranking Top 10: ➀ ➁ ➂ … ➉
Monospace ➉ -> item 10
With entities Hex: ➉ | Decimal: ➉

🧠 How It Works

1

Hexadecimal Code

&#x2789; uses the Unicode hexadecimal value 2789 to display ➉.

HTML markup
2

Decimal HTML Code

&#10121; uses the decimal Unicode value 10121 for the same character.

HTML markup
3

CSS Entity

\2789 is a CSS escape typically used in the content property of pseudo-elements.

CSS stylesheet
=

Same visual result

All methods render . Unicode U+2789 belongs to the Dingbats block.

Use Cases

Circled Sans‑Serif Digit Ten (➉) is commonly used in:

📋 Numbered Lists

Styled list markers like ➀–➉ in docs and articles.

📌 Steps & Procedures

Step 10 / final step in how-to flows.

🏆 Rankings

Top-ten lists, leaderboards, and scoreboards.

📑 Table of Contents

Section markers in outlines and navigation.

🍽️ Menus & Options

Number choices or options up to 10.

🎨 Decorative Numbering

Design-heavy content and presentations.

💡 Best Practices

Do

  • Use &#x2789; or &#10121; consistently in your markup
  • Check font support for Dingbats on your target devices
  • Use semantic lists (<ol>) when structure matters, and reserve ➉ for styling
  • Use CSS escapes for generated markers in ::before/::after

Don’t

  • Assume there is a named entity for ➉ (there isn’t)
  • Rely on Dingbats without a sensible fallback font stack
  • Mix CSS escapes into HTML content (use them in stylesheets only)
  • Use decorative numbering where plain text is clearer (e.g. formal docs)

Key Takeaways

1

➉ is Unicode U+2789 (Dingbats)

U+2789 &#x2789; &#10121;
2

Use CSS escape for generated content in content

\2789
3

There is no named HTML entity for ➉

4

Font support matters—test across devices for consistent Dingbats rendering

❓ Frequently Asked Questions

Use &#x2789; (hex), &#10121; (decimal), or \2789 in CSS content. All render ➉.
U+2789 (hex 2789, decimal 10121) in the Dingbats block.
No. Use numeric references like &#x2789; or &#10121;.
Dingbats are rendered by available fonts. If the chosen font lacks the glyph, the browser falls back to another font which can change the appearance.
Use <ol> for semantics and accessibility. Use ➉ as a styling choice for UI labels or decorative numbering (or generate it via CSS) when appropriate.

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