White Star

Shortcodes

Copy and paste codes for White Star symbol ☆ to use in your websites, apps, blogs, and more.

Unicode
U+2606
HTML Code
☆
HEX Code
☆
CSS Code
\2606
JS/JSON
\u2606
Unix/C/PHP/JAVA
0x2606
URL-encode
%E2%98%86
copied

Customize White Star Symbol

Customize ☆ symbol as you like and download White Star 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 White Star symbol in HTML, CSS, and JS?

Insert ☆ White Star using HTML

1. Copy-paste White Star directly:
<span>☆</span>
2. HTML Decimal Code:
<span>&#9734;</span>
3. Hexadecimal Code:
<span>&#x2606;</span>
Preview:

Add White Star symbol with CSS

.white-star::before {
    content: '\\2606';
}
Preview: White Star

White Star JavaScript Code

1. Direct Symbol:
document.querySelector('.white-star').textContent = '☆';
2. Unicode Escape for ☆:
document.querySelector('.white-star').textContent = '\u2606';
Preview: