Union With Logical Or

Shortcodes

Copy useful codes for union with logical or symbol ⩅ to use in websites, apps, blogs, and docs.

Unicode
U+2A45
HTML Code
⩅
HEX Code
⩅
CSS Code
\2A45
JS/JSON
\u2A45
Unix/C/PHP/JAVA
0x2A45
URL-encode
%E2%A9%85

Customize Union With Logical Or

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

  

How to use Union With Logical Or Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⩅</span>
HTML Code:
<span>&#10821;</span>
HEX Code:
<span>&#x2A45;</span>

Add with CSS

.union-with-logical-or::before {
  content: '\\2A45';
}

Set it in JavaScript

document.querySelector('.union-with-logical-or').textContent = '⩅';
copied