White Star

Shortcodes

Copy useful codes for white star symbol ☆ to use in websites, apps, blogs, and docs.

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

Customize White Star

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

  

How to use White Star Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>☆</span>
HTML Code:
<span>&#9734;</span>
HEX Code:
<span>&#x2606;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.white-star').textContent = '☆';
copied