Not Greater-than

Shortcodes

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

Unicode
U+226F
HTML Code
≯
HEX Code
≯
CSS Code
\226F
JS/JSON
\u226F
Unix/C/PHP/JAVA
0x226F
URL-encode
%E2%89%AF

Customize Not Greater-than

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

  

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

Insert in HTML

1. Direct symbol:
<span>≯</span>
HTML Code:
<span>&#8815;</span>
HEX Code:
<span>&#x226F;</span>

Add with CSS

.not-greater-than::before {
  content: '\\226F';
}

Set it in JavaScript

document.querySelector('.not-greater-than').textContent = '≯';
copied