Squared Plus

Shortcodes

Copy useful codes for squared plus symbol ⊞ to use in websites, apps, blogs, and docs.

Unicode
U+229E
HTML Code
⊞
HEX Code
⊞
CSS Code
\229E
JS/JSON
\u229E
Unix/C/PHP/JAVA
0x229E
URL-encode
%E2%8A%9E

Customize Squared Plus

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

  

How to use Squared Plus Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⊞</span>
HTML Code:
<span>&#8862;</span>
HEX Code:
<span>&#x229E;</span>

Add with CSS

.squared-plus::before {
  content: '\\229E';
}

Set it in JavaScript

document.querySelector('.squared-plus').textContent = '⊞';
copied