Black Four Pointed Star

Shortcodes

Copy useful codes for black four pointed star symbol ✦ to use in websites, apps, blogs, and docs.

Unicode
U+2726
HTML Code
✦
HEX Code
✦
CSS Code
\2726
JS/JSON
\u2726
Unix/C/PHP/JAVA
0x2726
URL-encode
%E2%9C%A6

Customize Black Four Pointed Star

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

  

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

Insert in HTML

1. Direct symbol:
<span>✦</span>
HTML Code:
<span>&#10022;</span>
HEX Code:
<span>&#x2726;</span>

Add with CSS

.black-four-pointed-star::before {
  content: '\\2726';
}

Set it in JavaScript

document.querySelector('.black-four-pointed-star').textContent = '✦';
copied