Intersection With Logical And

Shortcodes

Copy useful codes for intersection with logical and symbol ⩄ to use in websites, apps, blogs, and docs.

Unicode
U+2A44
HTML Code
⩄
HEX Code
⩄
CSS Code
\2A44
JS/JSON
\u2A44
Unix/C/PHP/JAVA
0x2A44
URL-encode
%E2%A9%84

Customize Intersection With Logical And

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

  

How to use Intersection With Logical And Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⩄</span>
HTML Code:
<span>&#10820;</span>
HEX Code:
<span>&#x2A44;</span>

Add with CSS

.intersection-with-logical-and::before {
  content: '\\2A44';
}

Set it in JavaScript

document.querySelector('.intersection-with-logical-and').textContent = '⩄';
copied