Black Small Star

Shortcodes

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

Unicode
U+2B51
HTML Code
⭑
HEX Code
⭑
CSS Code
\2B51
JS/JSON
\u2B51
Unix/C/PHP/JAVA
0x2B51
URL-encode
%E2%AD%91
copied

Customize Black Small Star Symbol

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

Insert ⭑ Black Small Star using HTML

1. Copy-paste Black Small Star directly:
<span>⭑</span>
2. HTML Decimal Code:
<span>&#11089;</span>
3. Hexadecimal Code:
<span>&#x2B51;</span>
Preview:

Add Black Small Star symbol with CSS

.black-small-star::before {
    content: '\\2B51';
}
Preview: Black Small Star

Black Small Star JavaScript Code

1. Direct Symbol:
document.querySelector('.black-small-star').textContent = '⭑';
2. Unicode Escape for ⭑:
document.querySelector('.black-small-star').textContent = '\u2B51';
Preview: