Two Logical And Operator

Shortcodes

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

Unicode
U+2A07
HTML Code
⨇
HEX Code
⨇
CSS Code
\2A07
JS/JSON
\u2A07
Unix/C/PHP/JAVA
0x2A07
URL-encode
%E2%A8%87
copied

Customize Two Logical And Operator Symbol

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

Insert ⨇ Two Logical And Operator using HTML

1. Copy-paste Two Logical And Operator directly:
<span>⨇</span>
2. HTML Decimal Code:
<span>&#10759;</span>
3. Hexadecimal Code:
<span>&#x2A07;</span>
Preview:

Add Two Logical And Operator symbol with CSS

.two-logical-and-operator::before {
    content: '\\2A07';
}
Preview: Two Logical And Operator

Two Logical And Operator JavaScript Code

1. Direct Symbol:
document.querySelector('.two-logical-and-operator').textContent = '⨇';
2. Unicode Escape for ⨇:
document.querySelector('.two-logical-and-operator').textContent = '\u2A07';
Preview: