Squared Dot Operator

Shortcodes

Copy useful codes for squared dot operator symbol ⊡ to use in websites, apps, blogs, and docs.

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

Customize Squared Dot Operator

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

  

How to use Squared Dot Operator Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⊡</span>
HTML Code:
<span>&#8865;</span>
HEX Code:
<span>&#x22A1;</span>

Add with CSS

.squared-dot-operator::before {
  content: '\\22A1';
}

Set it in JavaScript

document.querySelector('.squared-dot-operator').textContent = '⊡';
copied