Ballot Box

Shortcodes

Copy and paste codes for Ballot Box symbol ☐ to use in your websites, apps, blogs, and more.

Unicode
U+2610
HTML Code
☐
HEX Code
☐
CSS Code
\2610
JS/JSON
\u2610
Unix/C/PHP/JAVA
0x2610
URL-encode
%E2%98%90
copied

Customize Ballot Box Symbol

Customize ☐ symbol as you like and download Ballot Box as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
 

How to add Ballot Box symbol in HTML, CSS, and JS?

Insert ☐ Ballot Box using HTML

1. Copy-paste Ballot Box directly:
<span>☐</span>
2. HTML Decimal Code:
<span>&#9744;</span>
3. Hexadecimal Code:
<span>&#x2610;</span>
Preview:

Add Ballot Box symbol with CSS

.ballot-box::before {
    content: '\\2610';
}
Preview: Ballot Box

Ballot Box JavaScript Code

1. Direct Symbol:
document.querySelector('.ballot-box').textContent = '☐';
2. Unicode Escape for ☐:
document.querySelector('.ballot-box').textContent = '\u2610';
Preview: