Heavy Ballot X

Shortcodes

Copy useful codes for heavy ballot x symbol ✘ to use in websites, apps, blogs, and docs.

Unicode
U+2718
HTML Code
✘
HEX Code
✘
CSS Code
\2718
JS/JSON
\u2718
Unix/C/PHP/JAVA
0x2718
URL-encode
%E2%9C%98

Customize Heavy Ballot X

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

  

How to use Heavy Ballot X Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>✘</span>
HTML Code:
<span>&#10008;</span>
HEX Code:
<span>&#x2718;</span>

Add with CSS

.heavy-ballot-x::before {
  content: '\\2718';
}

Set it in JavaScript

document.querySelector('.heavy-ballot-x').textContent = '✘';
copied