Less-than But Not Equivalent To

Shortcodes

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

Unicode
U+22E6
HTML Code
⋦
HEX Code
⋦
CSS Code
\22E6
JS/JSON
\u22E6
Unix/C/PHP/JAVA
0x22E6
URL-encode
%E2%8B%A6

Customize Less-than But Not Equivalent To

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

  

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

Insert in HTML

1. Direct symbol:
<span>⋦</span>
HTML Code:
<span>&#8934;</span>
HEX Code:
<span>&#x22E6;</span>

Add with CSS

.less-than-but-not-equivalent-to::before {
  content: '\\22E6';
}

Set it in JavaScript

document.querySelector('.less-than-but-not-equivalent-to').textContent = '⋦';
copied