Ballot Box With X

Shortcodes

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

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

Customize Ballot Box With X Symbol

Customize ☒ symbol as you like and download Ballot Box With X 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 With X symbol in HTML, CSS, and JS?

Insert ☒ Ballot Box With X using HTML

1. Copy-paste Ballot Box With X directly:
<span>☒</span>
2. HTML Decimal Code:
<span>&#9746;</span>
3. Hexadecimal Code:
<span>&#x2612;</span>
Preview:

Add Ballot Box With X symbol with CSS

.ballot-box-with-x::before {
    content: '\\2612';
}
Preview: Ballot Box With X

Ballot Box With X JavaScript Code

1. Direct Symbol:
document.querySelector('.ballot-box-with-x').textContent = '☒';
2. Unicode Escape for ☒:
document.querySelector('.ballot-box-with-x').textContent = '\u2612';
Preview: