Greater-than Over Equal To

Shortcodes

Copy useful codes for greater-than over equal to symbol ≧ to use in websites, apps, blogs, and docs.

Unicode
U+2267
HTML Code
≧
HEX Code
≧
CSS Code
\2267
JS/JSON
\u2267
Unix/C/PHP/JAVA
0x2267
URL-encode
%E2%89%A7

Customize Greater-than Over Equal To

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

  

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

Insert in HTML

1. Direct symbol:
<span>≧</span>
HTML Code:
<span>&#8807;</span>
HEX Code:
<span>&#x2267;</span>

Add with CSS

.greater-than-over-equal-to::before {
  content: '\\2267';
}

Set it in JavaScript

document.querySelector('.greater-than-over-equal-to').textContent = '≧';
copied