Square Original Of

Shortcodes

Copy useful codes for square original of symbol ⊐ to use in websites, apps, blogs, and docs.

Unicode
U+2290
HTML Code
⊐
HEX Code
⊐
CSS Code
\2290
JS/JSON
\u2290
Unix/C/PHP/JAVA
0x2290
URL-encode
%E2%8A%90

Customize Square Original Of

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

  

How to use Square Original Of Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⊐</span>
HTML Code:
<span>&#8848;</span>
HEX Code:
<span>&#x2290;</span>

Add with CSS

.square-original-of::before {
  content: '\\2290';
}

Set it in JavaScript

document.querySelector('.square-original-of').textContent = '⊐';
copied