Larger Than

Shortcodes

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

Unicode
U+2AAB
HTML Code
⪫
HEX Code
⪫
CSS Code
\2AAB
JS/JSON
\u2AAB
Unix/C/PHP/JAVA
0x2AAB
URL-encode
%E2%AA%AB
copied

Customize Larger Than Symbol

Customize ⪫ symbol as you like and download Larger 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 Larger Than symbol in HTML, CSS, and JS?

Insert ⪫ Larger Than using HTML

1. Copy-paste Larger Than directly:
<span>⪫</span>
2. HTML Decimal Code:
<span>&#10923;</span>
3. Hexadecimal Code:
<span>&#x2AAB;</span>
Preview:

Add Larger Than symbol with CSS

.larger-than::before {
    content: '\\2AAB';
}
Preview: Larger Than

Larger Than JavaScript Code

1. Direct Symbol:
document.querySelector('.larger-than').textContent = '⪫';
2. Unicode Escape for ⪫:
document.querySelector('.larger-than').textContent = '\u2AAB';
Preview: