Two Logical And Operator

Shortcodes

Copy useful codes for two logical and operator symbol ⨇ to use in websites, apps, blogs, and docs.

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

Customize Two Logical And Operator

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

  

How to use Two Logical And Operator Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⨇</span>
HTML Code:
<span>&#10759;</span>
HEX Code:
<span>&#x2A07;</span>

Add with CSS

.two-logical-and-operator::before {
  content: '\\2A07';
}

Set it in JavaScript

document.querySelector('.two-logical-and-operator').textContent = '⨇';
copied