Less-than Or Slanted Equal To

Shortcodes

Copy useful codes for less-than or slanted equal to symbol ⩽ to use in websites, apps, blogs, and docs.

Unicode
U+2A7D
HTML Code
⩽
HEX Code
⩽
CSS Code
\2A7D
JS/JSON
\u2A7D
Unix/C/PHP/JAVA
0x2A7D
URL-encode
%E2%A9%BD

Customize Less-than Or Slanted Equal To

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

  

How to use Less-than Or Slanted Equal To Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⩽</span>
HTML Code:
<span>&#10877;</span>
HEX Code:
<span>&#x2A7D;</span>

Add with CSS

.less-than-or-slanted-equal-to::before {
  content: '\\2A7D';
}

Set it in JavaScript

document.querySelector('.less-than-or-slanted-equal-to').textContent = '⩽';
copied