Ballot X

Shortcodes

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

Unicode
U+2717
HTML Code
✗
HEX Code
✗
CSS Code
\2717
JS/JSON
\u2717
Unix/C/PHP/JAVA
0x2717
URL-encode
%E2%9C%97

Customize Ballot X

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

  

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

Insert in HTML

1. Direct symbol:
<span>✗</span>
HTML Code:
<span>&#10007;</span>
HEX Code:
<span>&#x2717;</span>

Add with CSS

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

Set it in JavaScript

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