Ballot Box With X

Shortcodes

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

Unicode
U+2612
HTML Code
☒
HEX Code
☒
CSS Code
\2612
JS/JSON
\u2612
Unix/C/PHP/JAVA
0x2612
URL-encode
%E2%98%92

Customize Ballot Box With X

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

  

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

Insert in HTML

1. Direct symbol:
<span>☒</span>
HTML Code:
<span>&#9746;</span>
HEX Code:
<span>&#x2612;</span>

Add with CSS

.ballot-box-with-x::before {
  content: '\\2612';
}

Set it in JavaScript

document.querySelector('.ballot-box-with-x').textContent = '☒';
copied