Curly Logical Or

Shortcodes

Copy useful codes for curly logical or symbol ⋎ to use in websites, apps, blogs, and docs.

Unicode
U+22CE
HTML Code
⋎
HEX Code
⋎
CSS Code
\22CE
JS/JSON
\u22CE
Unix/C/PHP/JAVA
0x22CE
URL-encode
%E2%8B%8E

Customize Curly Logical Or

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

  

How to use Curly Logical Or Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⋎</span>
HTML Code:
<span>&#8910;</span>
HEX Code:
<span>&#x22CE;</span>

Add with CSS

.curly-logical-or::before {
  content: '\\22CE';
}

Set it in JavaScript

document.querySelector('.curly-logical-or').textContent = '⋎';
copied