Squared Plus

Shortcodes

Copy and paste codes for Squared Plus symbol ⊞ to use in your websites, apps, blogs, and more.

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

Customize Squared Plus Symbol

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

Insert ⊞ Squared Plus using HTML

1. Copy-paste Squared Plus directly:
<span>⊞</span>
2. HTML Decimal Code:
<span>&#8862;</span>
3. Hexadecimal Code:
<span>&#x229E;</span>
Preview:

Add Squared Plus symbol with CSS

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

Squared Plus JavaScript Code

1. Direct Symbol:
document.querySelector('.squared-plus').textContent = '⊞';
2. Unicode Escape for ⊞:
document.querySelector('.squared-plus').textContent = '\u229E';
Preview: