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 and paste codes for Greater Than Or Equal symbol ≥ to use in your websites, apps, blogs, and more.

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
copied

Customize Greater Than Or Equal Symbol

Customize ≥ symbol as you like and download Greater Than Or Equal as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to type Greater Than Or Equal symbol ≥ ?

Using Greater Than Or Equal Alt Code:

You can type the Greater Than Or Equal symbol ≥ using your keyboard by using the Alt Code for Greater Than Or Equal. Before you begin, ensure that your Num Lock is turned on, and use the Numpad to type the code. Then, follow these simple steps:

  1. Hold down the Alt key on your keyboard.
  2. Type the number 242 using the Numpad.
  3. Release the Alt key.

This will make the ≥ appear on your screen.

How to add Greater Than Or Equal symbol in HTML, CSS, and JS?

Insert ≥ Greater Than Or Equal using HTML

1. Copy-paste Greater Than Or Equal directly:
<span>≥</span>
2. HTML Decimal Code:
<span>&#8805;</span>
3. Hexadecimal Code:
<span>&#x2265;</span>
Preview:

Add Greater Than Or Equal symbol with CSS

.greater-than-or-equal::before {
    content: '\\2265';
}
Preview: Greater Than Or Equal

Greater Than Or Equal JavaScript Code

1. Direct Symbol:
document.querySelector('.greater-than-or-equal').textContent = '≥';
2. Unicode Escape for ≥:
document.querySelector('.greater-than-or-equal').textContent = '\u2265';
Preview: