Double Nested Greater-than

Shortcodes

Copy and paste codes for Double Nested Greater-than symbol ⪢ to use in your websites, apps, blogs, and more.

Unicode
U+2AA2
HTML Code
⪢
HEX Code
⪢
CSS Code
\2AA2
JS/JSON
\u2AA2
Unix/C/PHP/JAVA
0x2AA2
URL-encode
%E2%AA%A2
copied

Customize Double Nested Greater-than Symbol

Customize ⪢ symbol as you like and download Double Nested Greater-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 Double Nested Greater-than symbol in HTML, CSS, and JS?

Insert ⪢ Double Nested Greater-than using HTML

1. Copy-paste Double Nested Greater-than directly:
<span>⪢</span>
2. HTML Decimal Code:
<span>&#10914;</span>
3. Hexadecimal Code:
<span>&#x2AA2;</span>
Preview:

Add Double Nested Greater-than symbol with CSS

.double-nested-greater-than::before {
    content: '\\2AA2';
}
Preview: Double Nested Greater-than

Double Nested Greater-than JavaScript Code

1. Direct Symbol:
document.querySelector('.double-nested-greater-than').textContent = '⪢';
2. Unicode Escape for ⪢:
document.querySelector('.double-nested-greater-than').textContent = '\u2AA2';
Preview: