Not Less-than

Shortcodes

Copy useful codes for not less-than symbol ≮ to use in websites, apps, blogs, and docs.

Unicode
U+226E
HTML Code
≮
HEX Code
≮
CSS Code
\226E
JS/JSON
\u226E
Unix/C/PHP/JAVA
0x226E
URL-encode
%E2%89%AE

Customize Not Less-than

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

  

How to use Not Less-than Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>≮</span>
HTML Code:
<span>&#8814;</span>
HEX Code:
<span>&#x226E;</span>

Add with CSS

.not-less-than::before {
  content: '\\226E';
}

Set it in JavaScript

document.querySelector('.not-less-than').textContent = '≮';
copied