Square Image Of Or Equal To

Shortcodes

Copy useful codes for square image of or equal to symbol ⊑ to use in websites, apps, blogs, and docs.

Unicode
U+2291
HTML Code
⊑
HEX Code
⊑
CSS Code
\2291
JS/JSON
\u2291
Unix/C/PHP/JAVA
0x2291
URL-encode
%E2%8A%91

Customize Square Image Of Or Equal To

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

  

How to use Square Image Of Or Equal To Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⊑</span>
HTML Code:
<span>&#8849;</span>
HEX Code:
<span>&#x2291;</span>

Add with CSS

.square-image-of-or-equal-to::before {
  content: '\\2291';
}

Set it in JavaScript

document.querySelector('.square-image-of-or-equal-to').textContent = '⊑';
copied