White Small Star

Shortcodes

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

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

Customize White Small Star Symbol

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

Insert ⭒ White Small Star using HTML

1. Copy-paste White Small Star directly:
<span>⭒</span>
2. HTML Decimal Code:
<span>&#11090;</span>
3. Hexadecimal Code:
<span>&#x2B52;</span>
Preview:

Add White Small Star symbol with CSS

.white-small-star::before {
    content: '\\2B52';
}
Preview: White Small Star

White Small Star JavaScript Code

1. Direct Symbol:
document.querySelector('.white-small-star').textContent = '⭒';
2. Unicode Escape for ⭒:
document.querySelector('.white-small-star').textContent = '\u2B52';
Preview: