HTML Entity for Negative Circled Sans-Serif Digit Ten (➓)

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

What You'll Learn

How to display Negative Circled Sans‑Serif Digit Ten (➓) in HTML using numeric entities (hex and decimal) and a CSS escape. This symbol is used for step markers, rankings, and highlighted lists where a filled/circled number stands out.

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

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

Unicode U+2793

Dingbats block

Hex Code ➓

Hexadecimal reference

HTML Code ➓

Decimal reference

Named Entity

No named entity available

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2793
Hex code       ➓
HTML code      ➓
Named entity   —
CSS code       \2793
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: "\2793";
  }
 </style>
</head>
<body>

<p>Negative Circled Sans-Serif Ten using Hexa Decimal: &#x2793;</p>
<p>Negative Circled Sans-Serif Ten using HTML Code: &#10131;</p>
<p id="point">Negative 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

&#x2793; uses the Unicode hexadecimal value 2793 to display ➓.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

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

Use Cases

Negative 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 &#x2793; or &#10131; 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+2793 (Dingbats)

U+2793 &#x2793; &#10131;
2

Use CSS escape for generated content in content

\2793
3

There is no named HTML entity for ➓

4

Font support matters—test across devices for consistent Dingbats rendering

❓ Frequently Asked Questions

Use &#x2793; (hex), &#10131; (decimal), or \2793 in CSS content. All render ➓.
U+2793 (hex 2793, decimal 10131) in the Dingbats block.
No. Use numeric references like &#x2793; or &#10131;.
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