Eight Pointed Rectilinear Black Star

Shortcodes

Copy useful codes for eight pointed rectilinear black star symbol ✷ to use in websites, apps, blogs, and docs.

Unicode
U+2737
HTML Code
✷
HEX Code
✷
CSS Code
\2737
JS/JSON
\u2737
Unix/C/PHP/JAVA
0x2737
URL-encode
%E2%9C%B7

Customize Eight Pointed Rectilinear Black Star

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

  

How to use Eight Pointed Rectilinear Black Star Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>✷</span>
HTML Code:
<span>&#10039;</span>
HEX Code:
<span>&#x2737;</span>

Add with CSS

.eight-pointed-rectilinear-black-star::before {
  content: '\\2737';
}

Set it in JavaScript

document.querySelector('.eight-pointed-rectilinear-black-star').textContent = '✷';
copied