Squared Minus

Shortcodes

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

Unicode
U+229F
HTML Code
⊟
HEX Code
⊟
CSS Code
\229F
JS/JSON
\u229F
Unix/C/PHP/JAVA
0x229F
URL-encode
%E2%8A%9F
copied

Customize Squared Minus Symbol

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

Insert ⊟ Squared Minus using HTML

1. Copy-paste Squared Minus directly:
<span>⊟</span>
2. HTML Decimal Code:
<span>&#8863;</span>
3. Hexadecimal Code:
<span>&#x229F;</span>
Preview:

Add Squared Minus symbol with CSS

.squared-minus::before {
    content: '\\229F';
}
Preview: Squared Minus

Squared Minus JavaScript Code

1. Direct Symbol:
document.querySelector('.squared-minus').textContent = '⊟';
2. Unicode Escape for ⊟:
document.querySelector('.squared-minus').textContent = '\u229F';
Preview: