Four Balloon-spoked Asterisk

Shortcodes

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

Unicode
U+2723
HTML Code
✣
HEX Code
✣
CSS Code
\2723
JS/JSON
\u2723
Unix/C/PHP/JAVA
0x2723
URL-encode
%E2%9C%A3

Customize Four Balloon-spoked Asterisk

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

  

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

Insert in HTML

1. Direct symbol:
<span>✣</span>
HTML Code:
<span>&#10019;</span>
HEX Code:
<span>&#x2723;</span>

Add with CSS

.four-balloon-spoked-asterisk::before {
  content: '\\2723';
}

Set it in JavaScript

document.querySelector('.four-balloon-spoked-asterisk').textContent = '✣';
copied