Greater-than Or Equivalent To

Shortcodes

Copy useful codes for greater-than or equivalent to symbol ≳ to use in websites, apps, blogs, and docs.

Unicode
U+2273
HTML Code
≳
HEX Code
≳
CSS Code
\2273
JS/JSON
\u2273
Unix/C/PHP/JAVA
0x2273
URL-encode
%E2%89%B3

Customize Greater-than Or Equivalent To

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

  

How to use Greater-than Or Equivalent To Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>≳</span>
HTML Code:
<span>&#8819;</span>
HEX Code:
<span>&#x2273;</span>

Add with CSS

.greater-than-or-equivalent-to::before {
  content: '\\2273';
}

Set it in JavaScript

document.querySelector('.greater-than-or-equivalent-to').textContent = '≳';
copied