Six Pointed Black Star

Shortcodes

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

Unicode
U+2736
HTML Code
✶
HEX Code
✶
CSS Code
\2736
JS/JSON
\u2736
Unix/C/PHP/JAVA
0x2736
URL-encode
%E2%9C%B6
copied

Customize Six Pointed Black Star Symbol

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

Insert ✶ Six Pointed Black Star using HTML

1. Copy-paste Six Pointed Black Star directly:
<span>✶</span>
2. HTML Decimal Code:
<span>&#10038;</span>
3. Hexadecimal Code:
<span>&#x2736;</span>
Preview:

Add Six Pointed Black Star symbol with CSS

.six-pointed-black-star::before {
    content: '\\2736';
}
Preview: Six Pointed Black Star

Six Pointed Black Star JavaScript Code

1. Direct Symbol:
document.querySelector('.six-pointed-black-star').textContent = '✶';
2. Unicode Escape for ✶:
document.querySelector('.six-pointed-black-star').textContent = '\u2736';
Preview: