Heavy Sparkle

Shortcodes

Copy useful codes for heavy sparkle symbol ❈ to use in websites, apps, blogs, and docs.

Unicode
U+2748
HTML Code
❈
HEX Code
❈
CSS Code
\2748
JS/JSON
\u2748
Unix/C/PHP/JAVA
0x2748
URL-encode
%E2%9C%A8

Customize Heavy Sparkle

Customize ❈, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Heavy Sparkle Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>❈</span>
HTML Code:
<span>&#10056;</span>
HEX Code:
<span>&#x2748;</span>

Add with CSS

.heavy-sparkle::before {
  content: '\\2748';
}

Set it in JavaScript

document.querySelector('.heavy-sparkle').textContent = '❈';
copied