Black Four Pointed Star

Shortcodes

Copy and paste codes for Black Four Pointed Star symbol ✦ to use in your websites, apps, blogs, and more.

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

Customize Black Four Pointed Star Symbol

Customize ✦ symbol as you like and download Black Four Pointed Star as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Black Four Pointed Star symbol in HTML, CSS, and JS?

Insert ✦ Black Four Pointed Star using HTML

1. Copy-paste Black Four Pointed Star directly:
<span>✦</span>
2. HTML Decimal Code:
<span>&#10022;</span>
3. Hexadecimal Code:
<span>&#x2726;</span>
Preview:

Add Black Four Pointed Star symbol with CSS

.black-four-pointed-star::before {
    content: '\\2726';
}
Preview: Black Four Pointed Star

Black Four Pointed Star JavaScript Code

1. Direct Symbol:
document.querySelector('.black-four-pointed-star').textContent = '✦';
2. Unicode Escape for ✦:
document.querySelector('.black-four-pointed-star').textContent = '\u2726';
Preview: