Much Less-than

Shortcodes

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

Unicode
U+226A
HTML Code
≪
HEX Code
≪
CSS Code
\226A
JS/JSON
\u226A
Unix/C/PHP/JAVA
0x226A
URL-encode
%E2%89%AA

Customize Much Less-than

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

  

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

Insert in HTML

1. Direct symbol:
<span>≪</span>
HTML Code:
<span>&#8810;</span>
HEX Code:
<span>&#x226A;</span>

Add with CSS

.much-less-than::before {
  content: '\\226A';
}

Set it in JavaScript

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