Logical And With Double Overbar

Shortcodes

Copy useful codes for logical and with double overbar symbol ⩞ to use in websites, apps, blogs, and docs.

Unicode
U+2A5E
HTML Code
⩞
HEX Code
⩞
CSS Code
\2A5E
JS/JSON
\u2A5E
Unix/C/PHP/JAVA
0x2A5E
URL-encode
%E2%A9%9E

Customize Logical And With Double Overbar

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

  

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

Insert in HTML

1. Direct symbol:
<span>⩞</span>
HTML Code:
<span>&#10846;</span>
HEX Code:
<span>&#x2A5E;</span>

Add with CSS

.logical-and-with-double-overbar::before {
  content: '\\2A5E';
}

Set it in JavaScript

document.querySelector('.logical-and-with-double-overbar').textContent = '⩞';
copied