Four Teardrop-spoked Asterisk

Shortcodes

Copy useful codes for four teardrop-spoked asterisk symbol ✢ to use in websites, apps, blogs, and docs.

Unicode
U+2722
HTML Code
✢
HEX Code
✢
CSS Code
\2722
JS/JSON
\u2722
Unix/C/PHP/JAVA
0x2722
URL-encode
%E2%9C%A2

Customize Four Teardrop-spoked Asterisk

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

  

How to use Four Teardrop-spoked Asterisk Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>✢</span>
HTML Code:
<span>&#10018;</span>
HEX Code:
<span>&#x2722;</span>

Add with CSS

.four-teardrop-spoked-asterisk::before {
  content: '\\2722';
}

Set it in JavaScript

document.querySelector('.four-teardrop-spoked-asterisk').textContent = '✢';
copied