Two Intersecting Logical Or

Shortcodes

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

Unicode
U+2A56
HTML Code
⩖
HEX Code
⩖
CSS Code
\2A56
JS/JSON
\u2A56
Unix/C/PHP/JAVA
0x2A56
URL-encode
%E2%A9%96

Customize Two Intersecting Logical Or

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

  

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

Insert in HTML

1. Direct symbol:
<span>⩖</span>
HTML Code:
<span>&#10838;</span>
HEX Code:
<span>&#x2A56;</span>

Add with CSS

.two-intersecting-logical-or::before {
  content: '\\2A56';
}

Set it in JavaScript

document.querySelector('.two-intersecting-logical-or').textContent = '⩖';
copied