Pinwheel Star

Shortcodes

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

Unicode
U+272F
HTML Code
✯
HEX Code
✯
CSS Code
\272F
JS/JSON
\u272F
Unix/C/PHP/JAVA
0x272F
URL-encode
%E2%9C%AF

Customize Pinwheel Star

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

  

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

Insert in HTML

1. Direct symbol:
<span>✯</span>
HTML Code:
<span>&#10031;</span>
HEX Code:
<span>&#x272F;</span>

Add with CSS

.pinwheel-star::before {
  content: '\\272F';
}

Set it in JavaScript

document.querySelector('.pinwheel-star').textContent = '✯';
copied