Greater-than Or Less-than

Shortcodes

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

Unicode
U+2277
HTML Code
≷
HEX Code
≷
CSS Code
\2277
JS/JSON
\u2277
Unix/C/PHP/JAVA
0x2277
URL-encode
%E2%89%B7

Customize Greater-than Or Less-than

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

  

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

Insert in HTML

1. Direct symbol:
<span>≷</span>
HTML Code:
<span>&#8823;</span>
HEX Code:
<span>&#x2277;</span>

Add with CSS

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

Set it in JavaScript

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