Greater Than Or Equal

Unicode Name: Greater-Than or Equal To

The greater than or equal to symbol is used in math expressions to show that one value is either greater than or equal to the other value. For example, x ≥ y.

Shortcodes

Copy useful codes for greater than or equal symbol ≥ to use in websites, apps, blogs, and docs.

Unicode
U+2265
Alt Code
242
HTML Code
≥
HEX Code
≥
CSS Code
\2265
JS/JSON
\u2265
Unix/C/PHP/JAVA
0x2265
URL-encode
%E2%89%A5

Customize Greater Than Or Equal

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

  

How to use Greater Than Or Equal Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>≥</span>
HTML Code:
<span>&#8805;</span>
HEX Code:
<span>&#x2265;</span>

Add with CSS

.greater-than-or-equal::before {
  content: '\\2265';
}

Set it in JavaScript

document.querySelector('.greater-than-or-equal').textContent = '≥';
copied