Smaller Than

Shortcodes

Copy useful codes for smaller than symbol ⪪ to use in websites, apps, blogs, and docs.

Unicode
U+2AAA
HTML Code
⪪
HEX Code
⪪
CSS Code
\2AAA
JS/JSON
\u2AAA
Unix/C/PHP/JAVA
0x2AAA
URL-encode
%E2%AA%AA

Customize Smaller Than

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

  

How to use Smaller Than Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⪪</span>
HTML Code:
<span>&#10922;</span>
HEX Code:
<span>&#x2AAA;</span>

Add with CSS

.smaller-than::before {
  content: '\\2AAA';
}

Set it in JavaScript

document.querySelector('.smaller-than').textContent = '⪪';
copied