HTML Entity for Balloon Spoked Asterisk (❉)

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

What You'll Learn

How to display the balloon spoked asterisk (❉) in HTML using numeric character references and CSS. This dingbat sits in the Dingbats Unicode block (U+2700–U+27BF) and works well for decorative headings, emphasis, list markers, and festive UI.

There is no named HTML entity for this character. Use ❉ or ❉ in markup, or \2749 in stylesheet content on pseudo-elements.

⚡ Quick Reference — Balloon Spoked Asterisk

Unicode U+2749

Dingbats block

Hex Code ❉

Hexadecimal reference

HTML Code ❉

Decimal reference

Named Entity

None (use numeric refs)

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

Complete HTML Example

This example demonstrates the balloon spoked asterisk using hexadecimal code, decimal HTML code, and a CSS content escape on a pseudo-element:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2749";
  }
 </style>
</head>
<body>
<p>Balloon Spoked Asterisk using Hexa Decimal: &#x2749;</p>
<p>Balloon Spoked Asterisk using HTML Code: &#10057;</p>
<p id="point">Balloon Spoked Asterisk using CSS Entity: </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

This dingbat is supported in all modern browsers when you use numeric references or CSS escapes:

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

👀 Live Preview

See the balloon spoked asterisk rendered live in different contexts:

Inline text Featured ❉ Special offer inside a sentence.
Large glyph
Heading accent ❉ Winter Gala ❉
Monospace list ❉ RSVP ❉ Venue ❉ Dress code
Footnote cue See terms for details ❉

🧠 How It Works

1

Hexadecimal Code

&#x2749; uses the Unicode hexadecimal value 2749. The x prefix marks a hexadecimal numeric character reference.

HTML markup
2

Decimal HTML Code

&#10057; is the decimal form (code point 10057). It is equivalent to &#x2749;.

HTML markup
3

CSS Entity

\2749 is the CSS escape for U+2749, used in the content property of ::before or ::after.

CSS stylesheet
=

Same visual result

Hex, decimal, and CSS escapes all produce . There is no named HTML entity; use numeric references in markup and \2749 only in CSS.

Use Cases

The balloon spoked asterisk (❉) commonly appears in:

🎨 Decorative UI

Headings, dividers, and hero lines that need a festive or ornamental star.

📌 Emphasis & highlights

Featured items, callouts, and “special” notes beside body copy.

📋 List markers

Custom bullets, checklists, or invitation-style lists without images.

🎉 Events & invites

Party pages, RSVPs, and seasonal promos where dingbats add personality.

📖 Docs & footnotes

Optional notes, tips, or margin markers in long-form HTML.

🌐 Typography

Sites that lean on Unicode dingbats instead of icon fonts for simple accents.

♿ Accessibility

Pair ❉ with visible text or aria-label so decorative use does not hide meaning from assistive tech.

💡 Best Practices

Do

  • Pick hex or decimal and stay consistent across the page
  • Confirm fonts include Dingbats coverage for stable rendering
  • Use \2749 only inside CSS, not pasted into HTML text
  • Mark purely decorative uses with aria-hidden="true" when appropriate
  • Keep contrast sufficient if the glyph sits on tinted backgrounds

Don’t

  • Use the dingbat as the only indicator of critical warnings
  • Assume every OS font renders ❉ with identical weight or size
  • Overload a page with many decorative symbols—they compete for attention
  • Forget screen-reader context when the asterisk implies an action
  • Mix multiple dingbat asterisk styles in one component without reason

Key Takeaways

1

Two numeric references render the same glyph

&#x2749; &#10057;
2

In CSS content, use the escape

\2749
3

Unicode U+2749 is a Dingbat; there is no standard named entity

4

Pair decorative glyphs with text or labels when they carry meaning

5

Prefer one symbol per pattern so the UI stays visually coherent

❓ Frequently Asked Questions

Use &#x2749; (hex), &#10057; (decimal), or \2749 in CSS content. There is no named entity; all valid methods render ❉.
U+2749 (hex 2749, decimal 10057). It is part of the Dingbats block and works well for decorative emphasis.
Use it for decorative headings, list or bullet alternatives, invitations, featured notes, and any UI that needs a spoked dingbat asterisk without loading an image.
Numeric references belong in HTML. The \2749 escape belongs in stylesheets (for example on pseudo-elements). Do not paste CSS escapes directly into HTML text nodes.
No. Use &#x2749;, &#10057;, or \2749 in CSS depending on whether you are authoring markup or styles.

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