Two Logical Or Operator

Shortcodes

Copy and paste codes for Two Logical Or Operator symbol ⨈ to use in your websites, apps, blogs, and more.

Unicode
U+2A08
HTML Code
⨈
HEX Code
⨈
CSS Code
\2A08
JS/JSON
\u2A08
Unix/C/PHP/JAVA
0x2A08
URL-encode
%E2%A8%88
copied

Customize Two Logical Or Operator Symbol

Customize ⨈ symbol as you like and download Two Logical Or Operator 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 Two Logical Or Operator symbol in HTML, CSS, and JS?

Insert ⨈ Two Logical Or Operator using HTML

1. Copy-paste Two Logical Or Operator directly:
<span>⨈</span>
2. HTML Decimal Code:
<span>&#10760;</span>
3. Hexadecimal Code:
<span>&#x2A08;</span>
Preview:

Add Two Logical Or Operator symbol with CSS

.two-logical-or-operator::before {
    content: '\\2A08';
}
Preview: Two Logical Or Operator

Two Logical Or Operator JavaScript Code

1. Direct Symbol:
document.querySelector('.two-logical-or-operator').textContent = '⨈';
2. Unicode Escape for ⨈:
document.querySelector('.two-logical-or-operator').textContent = '\u2A08';
Preview: