White Small Star

Shortcodes

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

Unicode
U+2B52
HTML Code
⭒
HEX Code
⭒
CSS Code
\2B52
JS/JSON
\u2B52
Unix/C/PHP/JAVA
0x2B52
URL-encode
%E2%AD%92

Customize White Small Star

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

  

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

Insert in HTML

1. Direct symbol:
<span>⭒</span>
HTML Code:
<span>&#11090;</span>
HEX Code:
<span>&#x2B52;</span>

Add with CSS

.white-small-star::before {
  content: '\\2B52';
}

Set it in JavaScript

document.querySelector('.white-small-star').textContent = '⭒';
copied