Logical Or With Horizontal Dash

Shortcodes

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

Unicode
U+2A5D
HTML Code
⩝
HEX Code
⩝
CSS Code
\2A5D
JS/JSON
\u2A5D
Unix/C/PHP/JAVA
0x2A5D
URL-encode
%E2%A9%9D

Customize Logical Or With Horizontal Dash

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

  

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

Insert in HTML

1. Direct symbol:
<span>⩝</span>
HTML Code:
<span>&#10845;</span>
HEX Code:
<span>&#x2A5D;</span>

Add with CSS

.logical-or-with-horizontal-dash::before {
  content: '\\2A5D';
}

Set it in JavaScript

document.querySelector('.logical-or-with-horizontal-dash').textContent = '⩝';
copied