Stress Outlined White Star

Shortcodes

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

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

Customize Stress Outlined White Star Symbol

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

Insert ✩ Stress Outlined White Star using HTML

1. Copy-paste Stress Outlined White Star directly:
<span>✩</span>
2. HTML Decimal Code:
<span>&#10025;</span>
3. Hexadecimal Code:
<span>&#x2729;</span>
Preview:

Add Stress Outlined White Star symbol with CSS

.stress-outlined-white-star::before {
    content: '\\2729';
}
Preview: Stress Outlined White Star

Stress Outlined White Star JavaScript Code

1. Direct Symbol:
document.querySelector('.stress-outlined-white-star').textContent = '✩';
2. Unicode Escape for ✩:
document.querySelector('.stress-outlined-white-star').textContent = '\u2729';
Preview: