Sixteen Pointed Asterisk

Shortcodes

Copy and paste codes for Sixteen Pointed Asterisk symbol ✺ to use in your websites, apps, blogs, and more.

Unicode
U+273A
HTML Code
✺
HEX Code
✺
CSS Code
\273A
JS/JSON
\u273A
Unix/C/PHP/JAVA
0x273A
URL-encode
%E2%9C%BA
copied

Customize Sixteen Pointed Asterisk Symbol

Customize ✺ symbol as you like and download Sixteen Pointed Asterisk 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 Sixteen Pointed Asterisk symbol in HTML, CSS, and JS?

Insert ✺ Sixteen Pointed Asterisk using HTML

1. Copy-paste Sixteen Pointed Asterisk directly:
<span>✺</span>
2. HTML Decimal Code:
<span>&#10042;</span>
3. Hexadecimal Code:
<span>&#x273A;</span>
Preview:

Add Sixteen Pointed Asterisk symbol with CSS

.sixteen-pointed-asterisk::before {
    content: '\\273A';
}
Preview: Sixteen Pointed Asterisk

Sixteen Pointed Asterisk JavaScript Code

1. Direct Symbol:
document.querySelector('.sixteen-pointed-asterisk').textContent = '✺';
2. Unicode Escape for ✺:
document.querySelector('.sixteen-pointed-asterisk').textContent = '\u273A';
Preview: