Left Half Black Star

Unicode Name: LEFT HALF BLACK STAR

Shortcodes

Copy useful codes for left half black star symbol ⯨ to use in websites, apps, blogs, and docs.

Unicode
U+2BE8
HTML Code
⯨
HEX Code
⯨
CSS Code
\2BE8
JS/JSON
\u2BE8
Unix/C/PHP/JAVA
0x2BE8
URL-encode
%E2%AF%A8

Customize Left Half Black Star

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

  

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

Insert in HTML

1. Direct symbol:
<span>⯨</span>
HTML Code:
<span>&#11240;</span>
HEX Code:
<span>&#x2BE8;</span>

Add with CSS

.left-half-black-star::before {
  content: '\\2BE8';
}

Set it in JavaScript

document.querySelector('.left-half-black-star').textContent = '⯨';
copied