Heavy Eight Pointed Rectilinear Black Star

Shortcodes

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

Unicode
U+2738
HTML Code
✸
HEX Code
✸
CSS Code
\2738
JS/JSON
\u2738
Unix/C/PHP/JAVA
0x2738
URL-encode
%E2%9C%B8

Customize Heavy Eight Pointed Rectilinear Black Star

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

  

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

Insert in HTML

1. Direct symbol:
<span>✸</span>
HTML Code:
<span>&#10040;</span>
HEX Code:
<span>&#x2738;</span>

Add with CSS

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

Set it in JavaScript

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