Neither Greater-than Nor Less-than

Shortcodes

Copy useful codes for neither greater-than nor less-than symbol ≹ to use in websites, apps, blogs, and docs.

Unicode
U+2279
HTML Code
≹
HEX Code
≹
CSS Code
\2279
JS/JSON
\u2279
Unix/C/PHP/JAVA
0x2279
URL-encode
%E2%89%B9

Customize Neither Greater-than Nor Less-than

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

  

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

Insert in HTML

1. Direct symbol:
<span>≹</span>
HTML Code:
<span>&#8825;</span>
HEX Code:
<span>&#x2279;</span>

Add with CSS

.neither-greater-than-nor-less-than::before {
  content: '\\2279';
}

Set it in JavaScript

document.querySelector('.neither-greater-than-nor-less-than').textContent = '≹';
copied