Very Much Less-than

Shortcodes

Copy useful codes for very much less-than symbol ⋘ to use in websites, apps, blogs, and docs.

Unicode
U+22D8
HTML Code
⋘
HEX Code
⋘
CSS Code
\22D8
JS/JSON
\u22D8
Unix/C/PHP/JAVA
0x22D8
URL-encode
%E2%8B%98

Customize Very Much Less-than

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

  

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

Insert in HTML

1. Direct symbol:
<span>⋘</span>
HTML Code:
<span>&#8920;</span>
HEX Code:
<span>&#x22D8;</span>

Add with CSS

.very-much-less-than::before {
  content: '\\22D8';
}

Set it in JavaScript

document.querySelector('.very-much-less-than').textContent = '⋘';
copied