Greater-than But Not Equal To

Shortcodes

Copy useful codes for greater-than but not equal to symbol ≩ to use in websites, apps, blogs, and docs.

Unicode
U+2269
HTML Code
≩
HEX Code
≩
CSS Code
\2269
JS/JSON
\u2269
Unix/C/PHP/JAVA
0x2269
URL-encode
%E2%89%A9

Customize Greater-than But Not Equal To

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

  

How to use Greater-than But Not Equal To Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>≩</span>
HTML Code:
<span>&#8809;</span>
HEX Code:
<span>&#x2269;</span>

Add with CSS

.greater-than-but-not-equal-to::before {
  content: '\\2269';
}

Set it in JavaScript

document.querySelector('.greater-than-but-not-equal-to').textContent = '≩';
copied