Less-than Or Equivalent To

Shortcodes

Copy useful codes for less-than or equivalent to symbol ≲ to use in websites, apps, blogs, and docs.

Unicode
U+2272
HTML Code
≲
HEX Code
≲
CSS Code
\2272
JS/JSON
\u2272
Unix/C/PHP/JAVA
0x2272
URL-encode
%E2%89%B2

Customize Less-than Or Equivalent To

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

  

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

Insert in HTML

1. Direct symbol:
<span>≲</span>
HTML Code:
<span>&#8818;</span>
HEX Code:
<span>&#x2272;</span>

Add with CSS

.less-than-or-equivalent-to::before {
  content: '\\2272';
}

Set it in JavaScript

document.querySelector('.less-than-or-equivalent-to').textContent = '≲';
copied