Triple Nested Greater-than

Shortcodes

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

Unicode
U+2AF8
HTML Code
⫸
HEX Code
⫸
CSS Code
\2AF8
JS/JSON
\u2AF8
Unix/C/PHP/JAVA
0x2AF8
URL-encode
%E2%AB%B8
copied

Customize Triple Nested Greater-than Symbol

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

Insert ⫸ Triple Nested Greater-than using HTML

1. Copy-paste Triple Nested Greater-than directly:
<span>⫸</span>
2. HTML Decimal Code:
<span>&#11000;</span>
3. Hexadecimal Code:
<span>&#x2AF8;</span>
Preview:

Add Triple Nested Greater-than symbol with CSS

.triple-nested-greater-than::before {
    content: '\\2AF8';
}
Preview: Triple Nested Greater-than

Triple Nested Greater-than JavaScript Code

1. Direct Symbol:
document.querySelector('.triple-nested-greater-than').textContent = '⫸';
2. Unicode Escape for ⫸:
document.querySelector('.triple-nested-greater-than').textContent = '\u2AF8';
Preview: