HTML Entity for Four Teardrop Spoked Asterisk (✢)

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

What You'll Learn

How to display the Four Teardrop Spoked Asterisk (✢) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2722 (FOUR TEARDROP-SPOKED ASTERISK) in the Dingbats block (U+2700–U+27BF)—a decorative asterisk variant with teardrop-shaped spokes, ideal for creative typography, list markers, and design elements.

Render it with ✢, ✢, or CSS escape \2722. There is no named HTML entity. Do not confuse ✢ with ✣ (balloon spoked, U+2723), ✤ (U+2724), or ✥ (U+2725)—later code points in the same spoked-asterisk series.

⚡ Quick Reference — Four Teardrop Spoked Asterisk

Unicode U+2722

Dingbats block

Hex Code ✢

Hexadecimal reference

HTML Code ✢

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2722
Hex code       ✢
HTML code      ✢
Named entity   (none)
CSS code       \2722
Meaning        Decorative teardrop spoked asterisk
Related        U+2723 = Balloon (✣); U+2724 = Club (✤)
1

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2722";
  }
 </style>
</head>
<body>
<p>Four Teardrop Spoked Asterisk using Hexadecimal: &#x2722;</p>
<p>Four Teardrop Spoked Asterisk using HTML Code: &#10018;</p>
<p id="point">Four Teardrop Spoked Asterisk using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Four Teardrop Spoked Asterisk is widely supported in modern browsers with a suitable font:

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

👀 Live Preview

See the four teardrop spoked asterisk (✢) as a decorative bullet and compared with related Dingbats:

List bullet ✢ First item ✢ Second item
Section marker ✢ Section title
Spoked series ✢ teardrop   ✣ balloon   ✤ club
Large glyph
Numeric refs &#x2722; &#10018; \2722

🧠 How It Works

1

Hexadecimal Code

&#x2722; uses the Unicode hexadecimal value 2722 to display the Four Teardrop Spoked Asterisk. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2722 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+2722 is in Dingbats. No named HTML entity—use numeric codes in markup.

Use Cases

The Four Teardrop Spoked Asterisk (✢) is commonly used in:

✨ Decorative typography

Headers, section dividers, and creative text styling with a distinctive spoked asterisk.

📋 List bullets

Custom bullet points for lists, feature highlights, or menu items.

🎨 Design & branding

Logos, icons, and visual motifs using a unique teardrop-spoked symbol.

💌 Invitations & cards

Wedding invites, event flyers, and greeting cards with decorative symbols.

📝 Callouts

Footnotes, highlights, or special callout markers in articles and docs.

🌐 Unicode styling

Cross-browser symbol display without image assets.

💡 Best Practices

Do

  • Add aria-label="teardrop spoked asterisk" when the symbol carries meaning
  • Use the CSS escape in ::before / ::after for bullets and dividers
  • Ensure fonts support Dingbats (Segoe UI Symbol, etc.)
  • Use &#x2722; or &#10018; consistently within a project
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse ✢ (teardrop) with ✣ (balloon), ✤, or ✥
  • Expect a named entity—none exists for U+2722
  • Put CSS escape \2722 in HTML text nodes
  • Use the glyph alone without accessible text when it conveys structure
  • Mix entity styles randomly in one file

Key Takeaways

1

Two HTML numeric references plus CSS render ✢

&#x2722; &#10018;
2

For CSS stylesheets, use the escape in the content property

\2722
3

Unicode U+2722 — FOUR TEARDROP-SPOKED ASTERISK

4

Dingbats block (U+2700–U+27BF)

5

Three methods, no named HTML entity

❓ Frequently Asked Questions

Use &#x2722; (hex), &#10018; (decimal), or \2722 in CSS content. There is no named entity.
U+2722 (FOUR TEARDROP-SPOKED ASTERISK). Dingbats block (U+2700–U+27BF). Hex 2722, decimal 10018. A decorative asterisk with teardrop-shaped spokes.
In decorative typography, list bullets and markers, headers and section dividers, creative design and branding, invitations and cards, and anywhere a distinctive teardrop-spoked asterisk symbol is needed.
HTML references (&#10018; or &#x2722;) go in markup. The CSS escape \2722 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Named HTML entities cover a subset of common characters. Symbols in the Dingbats block like U+2722 use numeric codes (hexadecimal or decimal). This is standard practice for such symbols in HTML.

Explore More HTML Entities!

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