Eight Pointed Pinwheel Star

Shortcodes

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

Unicode
U+2735
HTML Code
✵
HEX Code
✵
CSS Code
\2735
JS/JSON
\u2735
Unix/C/PHP/JAVA
0x2735
URL-encode
%E2%9C%B5
copied

Customize Eight Pointed Pinwheel Star Symbol

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

Insert ✵ Eight Pointed Pinwheel Star using HTML

1. Copy-paste Eight Pointed Pinwheel Star directly:
<span>✵</span>
2. HTML Decimal Code:
<span>&#10037;</span>
3. Hexadecimal Code:
<span>&#x2735;</span>
Preview:

Add Eight Pointed Pinwheel Star symbol with CSS

.eight-pointed-pinwheel-star::before {
    content: '\\2735';
}
Preview: Eight Pointed Pinwheel Star

Eight Pointed Pinwheel Star JavaScript Code

1. Direct Symbol:
document.querySelector('.eight-pointed-pinwheel-star').textContent = '✵';
2. Unicode Escape for ✵:
document.querySelector('.eight-pointed-pinwheel-star').textContent = '\u2735';
Preview: