Neither Less-than Nor Greater-than

Shortcodes

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

Unicode
U+2278
HTML Code
≸
HEX Code
≸
CSS Code
\2278
JS/JSON
\u2278
Unix/C/PHP/JAVA
0x2278
URL-encode
%E2%89%B8

Customize Neither Less-than Nor Greater-than

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

  

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

Insert in HTML

1. Direct symbol:
<span>≸</span>
HTML Code:
<span>&#8824;</span>
HEX Code:
<span>&#x2278;</span>

Add with CSS

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

Set it in JavaScript

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