Black Centre White Star

Shortcodes

Copy useful codes for black centre white star symbol ✬ to use in websites, apps, blogs, and docs.

Unicode
U+272C
HTML Code
✬
HEX Code
✬
CSS Code
\272C
JS/JSON
\u272C
Unix/C/PHP/JAVA
0x272C
URL-encode
%E2%9C%AC

Customize Black Centre White Star

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

  

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

Insert in HTML

1. Direct symbol:
<span>✬</span>
HTML Code:
<span>&#10028;</span>
HEX Code:
<span>&#x272C;</span>

Add with CSS

.black-centre-white-star::before {
  content: '\\272C';
}

Set it in JavaScript

document.querySelector('.black-centre-white-star').textContent = '✬';
copied