Twelve Pointed Black Star

Shortcodes

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

Unicode
U+2739
HTML Code
✹
HEX Code
✹
CSS Code
\2739
JS/JSON
\u2739
Unix/C/PHP/JAVA
0x2739
URL-encode
%E2%9C%B9
copied

Customize Twelve Pointed Black Star Symbol

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

Insert ✹ Twelve Pointed Black Star using HTML

1. Copy-paste Twelve Pointed Black Star directly:
<span>✹</span>
2. HTML Decimal Code:
<span>&#10041;</span>
3. Hexadecimal Code:
<span>&#x2739;</span>
Preview:

Add Twelve Pointed Black Star symbol with CSS

.twelve-pointed-black-star::before {
    content: '\\2739';
}
Preview: Twelve Pointed Black Star

Twelve Pointed Black Star JavaScript Code

1. Direct Symbol:
document.querySelector('.twelve-pointed-black-star').textContent = '✹';
2. Unicode Escape for ✹:
document.querySelector('.twelve-pointed-black-star').textContent = '\u2739';
Preview: