Ballot Box With Check

Shortcodes

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

Unicode
U+2611
HTML Code
☑
HEX Code
☑
CSS Code
\2611
JS/JSON
\u2611
Unix/C/PHP/JAVA
0x2611
URL-encode
%E2%98%91

Customize Ballot Box With Check

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

  

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

Insert in HTML

1. Direct symbol:
<span>☑</span>
HTML Code:
<span>&#9745;</span>
HEX Code:
<span>&#x2611;</span>

Add with CSS

.ballot-box-with-check::before {
  content: '\\2611';
}

Set it in JavaScript

document.querySelector('.ballot-box-with-check').textContent = '☑';
copied