Logical And With Underbar

Shortcodes

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

Unicode
U+2A5F
HTML Code
⩟
HEX Code
⩟
CSS Code
\2A5F
JS/JSON
\u2A5F
Unix/C/PHP/JAVA
0x2A5F
URL-encode
%E2%A9%9F

Customize Logical And With Underbar

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

  

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

Insert in HTML

1. Direct symbol:
<span>⩟</span>
HTML Code:
<span>&#10847;</span>
HEX Code:
<span>&#x2A5F;</span>

Add with CSS

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

Set it in JavaScript

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