Less-than Closed By Curve

Shortcodes

Copy useful codes for less-than closed by curve symbol ⪦ to use in websites, apps, blogs, and docs.

Unicode
U+2AA6
HTML Code
⪦
HEX Code
⪦
CSS Code
\2AA6
JS/JSON
\u2AA6
Unix/C/PHP/JAVA
0x2AA6
URL-encode
%E2%AA%A6

Customize Less-than Closed By Curve

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

  

How to use Less-than Closed By Curve Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⪦</span>
HTML Code:
<span>&#10918;</span>
HEX Code:
<span>&#x2AA6;</span>

Add with CSS

.less-than-closed-by-curve::before {
  content: '\\2AA6';
}

Set it in JavaScript

document.querySelector('.less-than-closed-by-curve').textContent = '⪦';
copied