Smaller Than Or Equal To

Shortcodes

Copy and paste codes for Smaller Than Or Equal To symbol ⪬ to use in your websites, apps, blogs, and more.

Unicode
U+2AAC
HTML Code
⪬
HEX Code
⪬
CSS Code
\2AAC
JS/JSON
\u2AAC
Unix/C/PHP/JAVA
0x2AAC
URL-encode
%E2%AA%AC
copied

Customize Smaller Than Or Equal To Symbol

Customize ⪬ symbol as you like and download Smaller Than Or Equal To 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 Or Equal To symbol in HTML, CSS, and JS?

Insert ⪬ Smaller Than Or Equal To using HTML

1. Copy-paste Smaller Than Or Equal To directly:
<span>⪬</span>
2. HTML Decimal Code:
<span>&#10924;</span>
3. Hexadecimal Code:
<span>&#x2AAC;</span>
Preview:

Add Smaller Than Or Equal To symbol with CSS

.smaller-than-or-equal-to::before {
    content: '\\2AAC';
}
Preview: Smaller Than Or Equal To

Smaller Than Or Equal To JavaScript Code

1. Direct Symbol:
document.querySelector('.smaller-than-or-equal-to').textContent = '⪬';
2. Unicode Escape for ⪬:
document.querySelector('.smaller-than-or-equal-to').textContent = '\u2AAC';
Preview: