Squared Dot Operator

Shortcodes

Copy and paste codes for Squared Dot Operator symbol ⊡ to use in your websites, apps, blogs, and more.

Unicode
U+22A1
HTML Code
⊡
HEX Code
⊡
CSS Code
\22A1
JS/JSON
\u22A1
Unix/C/PHP/JAVA
0x22A1
URL-encode
%E2%8A%A1
copied

Customize Squared Dot Operator Symbol

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

Insert ⊡ Squared Dot Operator using HTML

1. Copy-paste Squared Dot Operator directly:
<span>⊡</span>
2. HTML Decimal Code:
<span>&#8865;</span>
3. Hexadecimal Code:
<span>&#x22A1;</span>
Preview:

Add Squared Dot Operator symbol with CSS

.squared-dot-operator::before {
    content: '\\22A1';
}
Preview: Squared Dot Operator

Squared Dot Operator JavaScript Code

1. Direct Symbol:
document.querySelector('.squared-dot-operator').textContent = '⊡';
2. Unicode Escape for ⊡:
document.querySelector('.squared-dot-operator').textContent = '\u22A1';
Preview: