Similar Or Less-than

Shortcodes

Copy useful codes for similar or less-than symbol ⪝ to use in websites, apps, blogs, and docs.

Unicode
U+2A9D
HTML Code
⪝
HEX Code
⪝
CSS Code
\2A9D
JS/JSON
\u2A9D
Unix/C/PHP/JAVA
0x2A9D
URL-encode
%E2%AA%9D

Customize Similar Or Less-than

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

  

How to use Similar Or Less-than Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⪝</span>
HTML Code:
<span>&#10909;</span>
HEX Code:
<span>&#x2A9D;</span>

Add with CSS

.similar-or-less-than::before {
  content: '\\2A9D';
}

Set it in JavaScript

document.querySelector('.similar-or-less-than').textContent = '⪝';
copied