Double Nested Less-than With Underbar

Shortcodes

Copy useful codes for double nested less-than with underbar symbol ⪣ to use in websites, apps, blogs, and docs.

Unicode
U+2AA3
HTML Code
⪣
HEX Code
⪣
CSS Code
\2AA3
JS/JSON
\u2AA3
Unix/C/PHP/JAVA
0x2AA3
URL-encode
%E2%AA%A3

Customize Double Nested Less-than With Underbar

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

  

How to use Double Nested Less-than With Underbar Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⪣</span>
HTML Code:
<span>&#10915;</span>
HEX Code:
<span>&#x2AA3;</span>

Add with CSS

.double-nested-less-than-with-underbar::before {
  content: '\\2AA3';
}

Set it in JavaScript

document.querySelector('.double-nested-less-than-with-underbar').textContent = '⪣';
copied