Eight Pointed Black Star

Shortcodes

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

Unicode
U+2734
HTML Code
✴
HEX Code
✴
CSS Code
\2734
JS/JSON
\u2734
Unix/C/PHP/JAVA
0x2734
URL-encode
%E2%9C%B4
copied

Customize Eight Pointed Black Star Symbol

Customize ✴ symbol as you like and download Eight Pointed Black 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 Eight Pointed Black Star symbol in HTML, CSS, and JS?

Insert ✴ Eight Pointed Black Star using HTML

1. Copy-paste Eight Pointed Black Star directly:
<span>✴</span>
2. HTML Decimal Code:
<span>&#10036;</span>
3. Hexadecimal Code:
<span>&#x2734;</span>
Preview:

Add Eight Pointed Black Star symbol with CSS

.eight-pointed-black-star::before {
    content: '\\2734';
}
Preview: Eight Pointed Black Star

Eight Pointed Black Star JavaScript Code

1. Direct Symbol:
document.querySelector('.eight-pointed-black-star').textContent = '✴';
2. Unicode Escape for ✴:
document.querySelector('.eight-pointed-black-star').textContent = '\u2734';
Preview: