Logical And With Double Underbar

Shortcodes

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

Unicode
U+2A60
HTML Code
⩠
HEX Code
⩠
CSS Code
\2A60
JS/JSON
\u2A60
Unix/C/PHP/JAVA
0x2A60
URL-encode
%E2%A9%A0

Customize Logical And With Double Underbar

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

  

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

Insert in HTML

1. Direct symbol:
<span>⩠</span>
HTML Code:
<span>&#10848;</span>
HEX Code:
<span>&#x2A60;</span>

Add with CSS

.logical-and-with-double-underbar::before {
  content: '\\2A60';
}

Set it in JavaScript

document.querySelector('.logical-and-with-double-underbar').textContent = '⩠';
copied