Square Cup

Shortcodes

Copy and paste codes for Square Cup symbol ⊔ to use in your websites, apps, blogs, and more.

Unicode
U+2294
HTML Code
⊔
HEX Code
⊔
CSS Code
\2294
JS/JSON
\u2294
Unix/C/PHP/JAVA
0x2294
URL-encode
%E2%8A%94
copied

Customize Square Cup Symbol

Customize ⊔ symbol as you like and download Square Cup 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 Square Cup symbol in HTML, CSS, and JS?

Insert ⊔ Square Cup using HTML

1. Copy-paste Square Cup directly:
<span>⊔</span>
2. HTML Decimal Code:
<span>&#8852;</span>
3. Hexadecimal Code:
<span>&#x2294;</span>
Preview:

Add Square Cup symbol with CSS

.square-cup::before {
    content: '\\2294';
}
Preview: Square Cup

Square Cup JavaScript Code

1. Direct Symbol:
document.querySelector('.square-cup').textContent = '⊔';
2. Unicode Escape for ⊔:
document.querySelector('.square-cup').textContent = '\u2294';
Preview: