HTML Entity for Heavy Sparkle (❈)

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

What You'll Learn

How to display the Heavy Sparkle (❈) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2748 (HEAVY SPARKLE) in the Dingbats block (U+2700–U+27BF). It is a bold decorative sparkle or star-burst symbol—ideal for emphasis, celebrations, highlights, badges, and visual flair in web design.

Render it with ❈, ❈, or CSS escape \2748. There is no named HTML entity. Do not confuse ❈ with U+2747 (❇, lighter sparkle) or U+2731 (✱, heavy asterisk); each code point has a different glyph.

⚡ Quick Reference — Heavy Sparkle

Unicode U+2748

Dingbats block

Hex Code ❈

Hexadecimal reference

HTML Code ❈

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2748
Hex code       ❈
HTML code      ❈
Named entity   (none)
CSS code       \2748
Meaning        Heavy sparkle / star-burst
Related        U+2747 = sparkle (❇)
               U+2731 = heavy asterisk (✱)
               U+2726 = black star (✦)
1

Complete HTML Example

This example demonstrates the Heavy Sparkle (❈) using hexadecimal code, decimal HTML code, and a CSS content escape on a pseudo-element:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2748";
  }
 </style>
</head>
<body>
<p>Heavy Sparkle using Hexadecimal: &#x2748;</p>
<p>Heavy Sparkle using HTML Code: &#10056;</p>
<p id="point">Heavy Sparkle using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Heavy Sparkle (❈) is widely supported in modern browsers when the font includes Dingbats decorative glyphs:

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

👀 Live Preview

Heavy Sparkle (❈) in context, compared with related Dingbats symbols:

Featured badge ❈ Featured
Special offer ❈ Limited time offer
Large glyph
Comparison ❈   ❇   ✱
Numeric refs &#x2748; &#10056; \2748

🧠 How It Works

1

Hexadecimal Code

&#x2748; uses the Unicode hexadecimal value 2748 to display the heavy sparkle. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2748 is used in CSS stylesheets, particularly in content on ::before or ::after for badges, labels, and decorative highlights.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+2748 is in the Dingbats block. Next: Heavy Teardrop Shanked Right Arrow.

Use Cases

The Heavy Sparkle (❈) is commonly used in:

❈ Emphasis

Visual emphasis on headings, callouts, and key phrases in articles and landing pages.

🎉 Celebrations

Sales, new features, anniversaries, and promotional content with sparkle flair.

⭐ Badges

Featured, premium, or achievement indicators alongside ratings and labels.

📢 Callouts

Important notices, tips, and announcements in sidebars and banners.

🎮 Gamification

Rewards, level-ups, trending labels, and social highlight markers.

🔨 CSS content

content: "\2748" on pseudo-elements without extra HTML markup.

💡 Best Practices

Do

  • Pair ❈ with aria-label (e.g. “Featured”) when it conveys meaning
  • Use content: "\2748" on badges via ::before or ::after
  • Combine sparkle with visible text so screen readers get context
  • Declare UTF-8 with <meta charset="utf-8">
  • Keep one numeric style (hex or decimal) per project
  • Use sparingly so sparkles retain visual impact

Don’t

  • Rely on ❈ alone without accessible text for important status
  • Confuse U+2748 (❈) with U+2747 (❇) or U+2731 (✱)
  • Expect a named HTML entity for U+2748
  • Use CSS \2748 in HTML text nodes
  • Overuse sparkles in long body copy where they reduce readability

Key Takeaways

1

Two HTML numeric references plus CSS insert U+2748

&#x2748; &#10056;
2

For CSS, use \2748 in the content property

3

Unicode U+2748 — heavy sparkle (❈)

4

Distinct from lighter U+2747 (❇) and heavy asterisk U+2731 (✱)

❓ Frequently Asked Questions

Use &#x2748; (hex), &#10056; (decimal), or \2748 in CSS content. There is no named entity. All three methods render the heavy sparkle (❈) correctly.
U+2748 (HEAVY SPARKLE). Dingbats block. Hex 2748, decimal 10056. The symbol (❈) is a decorative sparkle or star-burst for emphasis and highlights.
For decorative emphasis, celebrations and special offers, highlights and callouts, badges and ratings, gamification and social labels, and any content where a bold sparkle effect adds visual impact.
HTML references (&#10056; or &#x2748;) go in markup. The CSS escape \2748 is used in stylesheets, typically on ::before or ::after. Both produce ❈.
Named entities cover common ASCII, Latin-1, and widely used symbols. U+2748 uses numeric hex (&#x2748;) or decimal (&#10056;) codes, which is standard for decorative Dingbats characters.

Explore More HTML Entities!

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