Sparkle

Shortcodes

Copy and paste codes for Sparkle symbol ❇ to use in your websites, apps, blogs, and more.

Unicode
U+2747
HTML Code
❇
HEX Code
❇
CSS Code
\2747
JS/JSON
\u2747
Unix/C/PHP/JAVA
0x2747
URL-encode
%E2%9C%A7
copied

Customize Sparkle Symbol

Customize ❇ symbol as you like and download Sparkle as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Sparkle symbol in HTML, CSS, and JS?

Insert ❇ Sparkle using HTML

1. Copy-paste Sparkle directly:
<span>❇</span>
2. HTML Decimal Code:
<span>&#10055;</span>
3. Hexadecimal Code:
<span>&#x2747;</span>
Preview:

Add Sparkle symbol with CSS

.sparkle::before {
    content: '\\2747';
}
Preview: Sparkle

Sparkle JavaScript Code

1. Direct Symbol:
document.querySelector('.sparkle').textContent = '❇';
2. Unicode Escape for ❇:
document.querySelector('.sparkle').textContent = '\u2747';
Preview: