Squared Logical And

Shortcodes

Copy and paste codes for Squared Logical And symbol ⟎ to use in your websites, apps, blogs, and more.

Unicode
U+27CE
HTML Code
⟎
HEX Code
⟎
CSS Code
\27CE
JS/JSON
\u27CE
Unix/C/PHP/JAVA
0x27CE
URL-encode
%E2%9F%8E
copied

Customize Squared Logical And Symbol

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

Insert ⟎ Squared Logical And using HTML

1. Copy-paste Squared Logical And directly:
<span>⟎</span>
2. HTML Decimal Code:
<span>&#10190;</span>
3. Hexadecimal Code:
<span>&#x27CE;</span>
Preview:

Add Squared Logical And symbol with CSS

.squared-logical-and::before {
    content: '\\27CE';
}
Preview: Squared Logical And

Squared Logical And JavaScript Code

1. Direct Symbol:
document.querySelector('.squared-logical-and').textContent = '⟎';
2. Unicode Escape for ⟎:
document.querySelector('.squared-logical-and').textContent = '\u27CE';
Preview: