Triple Nested Greater-than

Shortcodes

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

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

Customize Triple Nested Greater-than

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

  

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

Insert in HTML

1. Direct symbol:
<span>⫸</span>
HTML Code:
<span>&#11000;</span>
HEX Code:
<span>&#x2AF8;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.triple-nested-greater-than').textContent = '⫸';
copied