N-ary Logical Or

Shortcodes

Copy useful codes for n-ary logical or symbol ⋁ to use in websites, apps, blogs, and docs.

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

Customize N-ary Logical Or

Customize ⋁, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use N-ary Logical Or Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⋁</span>
HTML Code:
<span>&#8897;</span>
HEX Code:
<span>&#x22C1;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.n-ary-logical-or').textContent = '⋁';
copied