Circled White Star

Shortcodes

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

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

Customize Circled White Star

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

  

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

Insert in HTML

1. Direct symbol:
<span>✪</span>
HTML Code:
<span>&#10026;</span>
HEX Code:
<span>&#x272A;</span>

Add with CSS

.circled-white-star::before {
  content: '\\272A';
}

Set it in JavaScript

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