Double Logical Or

Shortcodes

Copy useful codes for double logical or symbol ⩔ to use in websites, apps, blogs, and docs.

Unicode
U+2A54
HTML Code
⩔
HEX Code
⩔
CSS Code
\2A54
JS/JSON
\u2A54
Unix/C/PHP/JAVA
0x2A54
URL-encode
%E2%A9%94

Customize Double Logical Or

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

  

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

Insert in HTML

1. Direct symbol:
<span>⩔</span>
HTML Code:
<span>&#10836;</span>
HEX Code:
<span>&#x2A54;</span>

Add with CSS

.double-logical-or::before {
  content: '\\2A54';
}

Set it in JavaScript

document.querySelector('.double-logical-or').textContent = '⩔';
copied