Slanted Equal To Or Less-than

Shortcodes

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

Unicode
U+2A95
HTML Code
⪕
HEX Code
⪕
CSS Code
\2A95
JS/JSON
\u2A95
Unix/C/PHP/JAVA
0x2A95
URL-encode
%E2%AA%95

Customize Slanted Equal To Or Less-than

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

  

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

Insert in HTML

1. Direct symbol:
<span>⪕</span>
HTML Code:
<span>&#10901;</span>
HEX Code:
<span>&#x2A95;</span>

Add with CSS

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

Set it in JavaScript

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