Stress Outlined White Star

Shortcodes

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

Unicode
U+2729
HTML Code
✩
HEX Code
✩
CSS Code
\2729
JS/JSON
\u2729
Unix/C/PHP/JAVA
0x2729
URL-encode
%E2%9C%A9

Customize Stress Outlined White Star

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

  

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

Insert in HTML

1. Direct symbol:
<span>✩</span>
HTML Code:
<span>&#10025;</span>
HEX Code:
<span>&#x2729;</span>

Add with CSS

.stress-outlined-white-star::before {
  content: '\\2729';
}

Set it in JavaScript

document.querySelector('.stress-outlined-white-star').textContent = '✩';
copied