Two Intersecting Logical And

Shortcodes

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

Unicode
U+2A55
HTML Code
⩕
HEX Code
⩕
CSS Code
\2A55
JS/JSON
\u2A55
Unix/C/PHP/JAVA
0x2A55
URL-encode
%E2%A9%95

Customize Two Intersecting Logical And

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

  

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

Insert in HTML

1. Direct symbol:
<span>⩕</span>
HTML Code:
<span>&#10837;</span>
HEX Code:
<span>&#x2A55;</span>

Add with CSS

.two-intersecting-logical-and::before {
  content: '\\2A55';
}

Set it in JavaScript

document.querySelector('.two-intersecting-logical-and').textContent = '⩕';
copied