Circled White Star

Shortcodes

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

Unicode
U+272A
HTML Code
✪
HEX Code
✪
CSS Code
\272A
JS/JSON
\u272A
Unix/C/PHP/JAVA
0x272A
URL-encode
%E2%9C%AA
copied

Customize Circled White Star Symbol

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

Insert ✪ Circled White Star using HTML

1. Copy-paste Circled White Star directly:
<span>✪</span>
2. HTML Decimal Code:
<span>&#10026;</span>
3. Hexadecimal Code:
<span>&#x272A;</span>
Preview:

Add Circled White Star symbol with CSS

.circled-white-star::before {
    content: '\\272A';
}
Preview: Circled White Star

Circled White Star JavaScript Code

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