Logical Or With Double Overbar

Shortcodes

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

Unicode
U+2A62
HTML Code
⩢
HEX Code
⩢
CSS Code
\2A62
JS/JSON
\u2A62
Unix/C/PHP/JAVA
0x2A62
URL-encode
%E2%A9%A2

Customize Logical Or With Double Overbar

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

  

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

Insert in HTML

1. Direct symbol:
<span>⩢</span>
HTML Code:
<span>&#10850;</span>
HEX Code:
<span>&#x2A62;</span>

Add with CSS

.logical-or-with-double-overbar::before {
  content: '\\2A62';
}

Set it in JavaScript

document.querySelector('.logical-or-with-double-overbar').textContent = '⩢';
copied