Logical And With Horizontal Dash

Shortcodes

Copy useful codes for logical and with horizontal dash symbol ⩜ to use in websites, apps, blogs, and docs.

Unicode
U+2A5C
HTML Code
⩜
HEX Code
⩜
CSS Code
\2A5C
JS/JSON
\u2A5C
Unix/C/PHP/JAVA
0x2A5C
URL-encode
%E2%A9%9C

Customize Logical And With Horizontal Dash

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

  

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

Insert in HTML

1. Direct symbol:
<span>⩜</span>
HTML Code:
<span>&#10844;</span>
HEX Code:
<span>&#x2A5C;</span>

Add with CSS

.logical-and-with-horizontal-dash::before {
  content: '\\2A5C';
}

Set it in JavaScript

document.querySelector('.logical-and-with-horizontal-dash').textContent = '⩜';
copied