Eight Pointed Pinwheel Star

Shortcodes

Copy useful codes for eight pointed pinwheel star symbol ✵ to use in websites, apps, blogs, and docs.

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

Customize Eight Pointed Pinwheel Star

Customize ✵, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Eight Pointed Pinwheel Star Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>✵</span>
HTML Code:
<span>&#10037;</span>
HEX Code:
<span>&#x2735;</span>

Add with CSS

.eight-pointed-pinwheel-star::before {
  content: '\\2735';
}

Set it in JavaScript

document.querySelector('.eight-pointed-pinwheel-star').textContent = '✵';
copied