HTML Entity for Teardrop Spoked Asterisk (✻)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+273B

What You'll Learn

How to display the Teardrop Spoked Asterisk (✻) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+273B (TEARDROP-SPOKED ASTERISK) in the Dingbats block (U+2700–U+27BF)—a decorative asterisk with teardrop-shaped spokes for bullets, accents, and ornamental typography.

Render it with ✻, ✻, or CSS escape \273B. There is no named HTML entity. Do not confuse ✻ with ✼ (open centre teardrop spoked asterisk, U+273C), ✽ (heavy teardrop spoked asterisk, U+273D), or the ASCII asterisk * (U+002A).

⚡ Quick Reference — Teardrop Spoked Asterisk

Unicode U+273B

Dingbats

Hex Code ✻

Hexadecimal reference

HTML Code ✻

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+273B
Hex code       ✻
HTML code      ✻
Named entity   (none)
CSS code       \273B
Block          Dingbats (U+2700–U+27BF)
Related        U+273C = Open Centre (✼), U+273D = Heavy (✽)
1

Complete HTML Example

This example demonstrates the Teardrop Spoked Asterisk (✻) using hexadecimal code, decimal HTML code, and a CSS content escape (no named entity):

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\273B";
  }
 </style>
</head>
<body>
<p>Using Hexadecimal: &#x273B;</p>
<p>Using HTML Code: &#10043;</p>
<p id="point">Using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Teardrop Spoked Asterisk renders in modern browsers when fonts include Dingbats glyphs:

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

👀 Live Preview

See the Teardrop Spoked Asterisk (✻) in context and compared with related Dingbats asterisks:

Bullet ✻ Featured item
Large glyph
Teardrop family ✻ standard   ✼ open centre   ✽ heavy
Numeric refs &#x273B; &#10043; \273B

🧠 How It Works

1

Hexadecimal Code

&#x273B; uses the Unicode hexadecimal value 273B to display the Teardrop Spoked Asterisk. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#10043; uses the decimal Unicode value 10043 to display the same character.

HTML markup
3

CSS Entity

\273B is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce the glyph: . Unicode U+273B in the Dingbats block (U+2700–U+27BF). No named entity.

Use Cases

The Teardrop Spoked Asterisk (✻) commonly appears in:

🎨 Web Design

Decorative accents and visual embellishment.

🖥 UI Elements

Icons, badges, and interactive markers.

📄 Typography

Editorial design and publishing accents.

🔖 Custom Bullets

List markers via CSS list-style or ::marker.

🌟 Branding

Logos and visual identity with distinctive symbols.

📝 Footnotes

Ornamental reference markers in documentation.

🎨 Creative Content

Artistic projects and design showcases.

💡 Best Practices

Do

  • Use &#x273B; or &#10043; for the asterisk glyph
  • Use Dingbats-friendly fonts for consistent rendering
  • Add aria-hidden="true" when purely decorative
  • Pick one style (hex or decimal) per project for consistency
  • Test across browsers and devices

Don’t

  • Confuse ✻ with ✼ (open centre) or ✽ (heavy teardrop)
  • Substitute ASCII * when this specific glyph is required
  • Put CSS escape \273B directly in HTML text nodes
  • Expect a named HTML entity for U+273B—use numeric references
  • Use HTML entities in JS (use \u273B instead)

Key Takeaways

1

Two HTML references both render ✻

&#x273B; &#10043;
2

For CSS stylesheets, use the escape in the content property

\273B
3

Unicode U+273B — TEARDROP-SPOKED ASTERISK

4

No named entity—use numeric references or CSS escape

5

Part of the teardrop asterisk family with ✼ and ✽

❓ Frequently Asked Questions

Use &#x273B; (hex), &#10043; (decimal), or \273B in CSS content. There is no named HTML entity. All three produce ✻.
U+273B (TEARDROP-SPOKED ASTERISK). Dingbats block (U+2700–U+27BF). Hex 273B, decimal 10043.
In web design, UI elements, decorative typography, custom bullets, footnotes, badges, branding, and any content that needs a distinctive ornamental asterisk.
HTML numeric references (&#10043; or &#x273B;) go directly in markup. The CSS escape \273B is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
No. ✻ (U+273B) is TEARDROP-SPOKED ASTERISK. ✼ (U+273C) is OPEN CENTRE TEARDROP-SPOKED ASTERISK with an open centre and teardrop-shaped spokes. They are separate Unicode code points with different glyphs.

Explore More HTML Entities!

Discover 1500+ HTML character references — Dingbats, asterisks, symbols, 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