Triple Nested Less-than

Shortcodes

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

Unicode
U+2AF7
HTML Code
⫷
HEX Code
⫷
CSS Code
\2AF7
JS/JSON
\u2AF7
Unix/C/PHP/JAVA
0x2AF7
URL-encode
%E2%AB%B7

Customize Triple Nested Less-than

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

  

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

Insert in HTML

1. Direct symbol:
<span>⫷</span>
HTML Code:
<span>&#10999;</span>
HEX Code:
<span>&#x2AF7;</span>

Add with CSS

.triple-nested-less-than::before {
  content: '\\2AF7';
}

Set it in JavaScript

document.querySelector('.triple-nested-less-than').textContent = '⫷';
copied