Sloping Large And

Shortcodes

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

Unicode
U+2A58
HTML Code
⩘
HEX Code
⩘
CSS Code
\2A58
JS/JSON
\u2A58
Unix/C/PHP/JAVA
0x2A58
URL-encode
%E2%A9%98

Customize Sloping Large And

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

  

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

Insert in HTML

1. Direct symbol:
<span>⩘</span>
HTML Code:
<span>&#10840;</span>
HEX Code:
<span>&#x2A58;</span>

Add with CSS

.sloping-large-and::before {
  content: '\\2A58';
}

Set it in JavaScript

document.querySelector('.sloping-large-and').textContent = '⩘';
copied