Eight Spoked Asterisk

Shortcodes

Copy useful codes for eight spoked asterisk symbol ✳ to use in websites, apps, blogs, and docs.

Unicode
U+2733
HTML Code
✳
HEX Code
✳
CSS Code
\2733
JS/JSON
\u2733
Unix/C/PHP/JAVA
0x2733
URL-encode
%E2%9C%B3

Customize Eight Spoked Asterisk

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

  

How to use Eight Spoked Asterisk Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>✳</span>
HTML Code:
<span>&#10035;</span>
HEX Code:
<span>&#x2733;</span>

Add with CSS

.eight-spoked-asterisk::before {
  content: '\\2733';
}

Set it in JavaScript

document.querySelector('.eight-spoked-asterisk').textContent = '✳';
copied