Smaller Than

Shortcodes

Copy and paste codes for Smaller Than symbol ⪪ to use in your websites, apps, blogs, and more.

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

Customize Smaller Than Symbol

Customize ⪪ symbol as you like and download Smaller Than as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Smaller Than symbol in HTML, CSS, and JS?

Insert ⪪ Smaller Than using HTML

1. Copy-paste Smaller Than directly:
<span>⪪</span>
2. HTML Decimal Code:
<span>&#10922;</span>
3. Hexadecimal Code:
<span>&#x2AAA;</span>
Preview:

Add Smaller Than symbol with CSS

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

Smaller Than JavaScript Code

1. Direct Symbol:
document.querySelector('.smaller-than').textContent = '⪪';
2. Unicode Escape for ⪪:
document.querySelector('.smaller-than').textContent = '\u2AAA';
Preview: