Less-than Or Greater-than

Shortcodes

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

Unicode
U+2276
HTML Code
≶
HEX Code
≶
CSS Code
\2276
JS/JSON
\u2276
Unix/C/PHP/JAVA
0x2276
URL-encode
%E2%89%B6

Customize Less-than Or Greater-than

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

  

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

Insert in HTML

1. Direct symbol:
<span>≶</span>
HTML Code:
<span>&#8822;</span>
HEX Code:
<span>&#x2276;</span>

Add with CSS

.less-than-or-greater-than::before {
  content: '\\2276';
}

Set it in JavaScript

document.querySelector('.less-than-or-greater-than').textContent = '≶';
copied