Black Small Star

Shortcodes

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

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

Customize Black Small Star

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

  

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

Insert in HTML

1. Direct symbol:
<span>⭑</span>
HTML Code:
<span>&#11089;</span>
HEX Code:
<span>&#x2B51;</span>

Add with CSS

.black-small-star::before {
  content: '\\2B51';
}

Set it in JavaScript

document.querySelector('.black-small-star').textContent = '⭑';
copied