Sloping Large Or

Shortcodes

Copy useful codes for sloping large or symbol ⩗ to use in websites, apps, blogs, and docs.

Unicode
U+2A57
HTML Code
⩗
HEX Code
⩗
CSS Code
\2A57
JS/JSON
\u2A57
Unix/C/PHP/JAVA
0x2A57
URL-encode
%E2%A9%97

Customize Sloping Large Or

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

  

How to use Sloping Large Or Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⩗</span>
HTML Code:
<span>&#10839;</span>
HEX Code:
<span>&#x2A57;</span>

Add with CSS

.sloping-large-or::before {
  content: '\\2A57';
}

Set it in JavaScript

document.querySelector('.sloping-large-or').textContent = '⩗';
copied