Double Nested Greater-than

Shortcodes

Copy useful codes for double nested greater-than symbol ⪢ to use in websites, apps, blogs, and docs.

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

Customize Double Nested Greater-than

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

  

How to use Double Nested Greater-than Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⪢</span>
HTML Code:
<span>&#10914;</span>
HEX Code:
<span>&#x2AA2;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.double-nested-greater-than').textContent = '⪢';
copied