N-ary Logical Or

Shortcodes

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

Unicode
U+22C1
HTML Code
⋁
HEX Code
⋁
CSS Code
\22C1
JS/JSON
\u22C1
Unix/C/PHP/JAVA
0x22C1
URL-encode
%E2%8B%81
copied

Customize N-ary Logical Or Symbol

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

Insert ⋁ N-ary Logical Or using HTML

1. Copy-paste N-ary Logical Or directly:
<span>⋁</span>
2. HTML Decimal Code:
<span>&#8897;</span>
3. Hexadecimal Code:
<span>&#x22C1;</span>
Preview:

Add N-ary Logical Or symbol with CSS

.n-ary-logical-or::before {
    content: '\\22C1';
}
Preview: N-ary Logical Or

N-ary Logical Or JavaScript Code

1. Direct Symbol:
document.querySelector('.n-ary-logical-or').textContent = '⋁';
2. Unicode Escape for ⋁:
document.querySelector('.n-ary-logical-or').textContent = '\u22C1';
Preview: