Squared Times

Shortcodes

Copy and paste codes for Squared Times symbol ⊠ to use in your websites, apps, blogs, and more.

Unicode
U+22A0
HTML Code
⊠
HEX Code
⊠
CSS Code
\22A0
JS/JSON
\u22A0
Unix/C/PHP/JAVA
0x22A0
URL-encode
%E2%8A%A0
copied

Customize Squared Times Symbol

Customize ⊠ symbol as you like and download Squared Times 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 Squared Times symbol in HTML, CSS, and JS?

Insert ⊠ Squared Times using HTML

1. Copy-paste Squared Times directly:
<span>⊠</span>
2. HTML Decimal Code:
<span>&#8864;</span>
3. Hexadecimal Code:
<span>&#x22A0;</span>
Preview:

Add Squared Times symbol with CSS

.squared-times::before {
    content: '\\22A0';
}
Preview: Squared Times

Squared Times JavaScript Code

1. Direct Symbol:
document.querySelector('.squared-times').textContent = '⊠';
2. Unicode Escape for ⊠:
document.querySelector('.squared-times').textContent = '\u22A0';
Preview: