HTML Entity for Four Balloon Spoked Asterisk (✣)

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

What You'll Learn

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

Render it with ✣, ✣, or CSS escape \2723. There is no named HTML entity. Do not confuse ✣ with * (ASCII asterisk, U+002A) or ✤ (four club spoked asterisk, U+2724).

⚡ Quick Reference — Four Balloon Spoked Asterisk

Unicode U+2723

Dingbats block

Hex Code ✣

Hexadecimal reference

HTML Code ✣

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2723
Hex code       ✣
HTML code      ✣
Named entity   (none)
CSS code       \2723
Meaning        Decorative balloon spoked asterisk
Related        U+2724 = Club spoked (✤); U+002A = ASCII * (*)
1

Complete HTML Example

This example demonstrates the Four Balloon 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: "\2723";
  }
 </style>
</head>
<body>
<p>Four Balloon Spoked Asterisk using Hexadecimal: &#x2723;</p>
<p>Four Balloon Spoked Asterisk using HTML Code: &#10019;</p>
<p id="point">Four Balloon Spoked Asterisk using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Four Balloon 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 balloon spoked asterisk (✣) as a decorative bullet and compared with related symbols:

List bullet ✣ First item ✣ Second item
Section marker ✣ Section title
vs club spoked balloon ✣   vs   club ✤
Large glyph
Numeric refs &#x2723; &#10019; \2723

🧠 How It Works

1

Hexadecimal Code

&#x2723; uses the Unicode hexadecimal value 2723 to display the Four Balloon Spoked Asterisk. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

Use Cases

The Four Balloon Spoked Asterisk (✣) is commonly used in:

✨ Decorative typography

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

📋 List bullets

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

🎨 Design & branding

Logos, icons, and visual motifs using a unique 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="decorative 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 &#x2723; or &#10019; consistently within a project
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse ✣ with ✤ (club spoked) or plain &ast; (*)
  • Expect a named entity—none exists for U+2723
  • Put CSS escape \2723 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 ✣

&#x2723; &#10019;
2

For CSS stylesheets, use the escape in the content property

\2723
3

Unicode U+2723 — FOUR BALLOON-SPOKED ASTERISK

4

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

5

Three methods, no named HTML entity

❓ Frequently Asked Questions

Use &#x2723; (hex), &#10019; (decimal), or \2723 in CSS content. There is no named entity.
U+2723 (FOUR BALLOON-SPOKED ASTERISK). Dingbats block (U+2700–U+27BF). Hex 2723, decimal 10019. A decorative asterisk variant used in typography and design.
In decorative typography, list bullets and markers, headers and section dividers, creative design and branding, invitations and cards, and anywhere a distinctive asterisk or star symbol is needed.
HTML references (&#10019; or &#x2723;) go in markup. The CSS escape \2723 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+2723 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