Shadowed White Star

Shortcodes

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

Unicode
U+2730
HTML Code
✰
HEX Code
✰
CSS Code
\2730
JS/JSON
\u2730
Unix/C/PHP/JAVA
0x2730
URL-encode
%E2%9C%B0

Customize Shadowed White Star

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

  

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

Insert in HTML

1. Direct symbol:
<span>✰</span>
HTML Code:
<span>&#10032;</span>
HEX Code:
<span>&#x2730;</span>

Add with CSS

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

Set it in JavaScript

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