N-ary Logical And

Shortcodes

Copy and paste codes for N-ary Logical And symbol ⋀ to use in your websites, apps, blogs, and more.

Unicode
U+22C0
HTML Code
⋀
HEX Code
⋀
CSS Code
\22C0
JS/JSON
\u22C0
Unix/C/PHP/JAVA
0x22C0
URL-encode
%E2%8B%80
copied

Customize N-ary Logical And Symbol

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

Insert ⋀ N-ary Logical And using HTML

1. Copy-paste N-ary Logical And directly:
<span>⋀</span>
2. HTML Decimal Code:
<span>&#8896;</span>
3. Hexadecimal Code:
<span>&#x22C0;</span>
Preview:

Add N-ary Logical And symbol with CSS

.n-ary-logical-and::before {
    content: '\\22C0';
}
Preview: N-ary Logical And

N-ary Logical And JavaScript Code

1. Direct Symbol:
document.querySelector('.n-ary-logical-and').textContent = '⋀';
2. Unicode Escape for ⋀:
document.querySelector('.n-ary-logical-and').textContent = '\u22C0';
Preview: