| Symbol Name | Greater-Than Or Equal To |
| Unicode Version | 1.1 |
| Unicode | U+2265 |
| Unicode block | |
| General category | Math Symbol (Sm) |
| CSS Code |
| UTF-8 | E2 89 A5 |
| UTF-16 | 2265 |
| UTF-32 | 00002265 |
1\documentclass{article}2\usepackage{pifont}3\ge4\end{document}You can type the greater-than or equal to symbol on most modern devices with the help of following methods:
Alt + 8805 on the numeric keypad, or insert via Character Map.
Option + period on many layouts, or Edit → Emoji & Symbols.
Ctrl + Shift + U, type 2265, then Enter (layout-dependent).
Paste from this page or use a math keyboard.
Paste from this page or use extended symbol panels.
1span.ge::before { content: "\2265"; }1<span>≥</span>Greater-Than Or Equal To symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u2265' or String.fromCodePoint(0x2265) |
| Python | '\N{GREATER-THAN OR EQUAL TO}' or chr(8805) |
| Rust | '\u{2265}' |
| C / C++ | UTF-8 source or wchar_t with U+2265 |
| Go | string(rune(0x2265)) |
| Ruby | "\u2265" |
\2265 |
| Hex Code | 0x2265 |
| HTML Code | ≥ |
| LaTeX | \ge |
| Symbol | ≥ |
| URL encode (UTF-8 percent) | %E2%89%A5 |
| Spoken / screen reader name | Greater Than Or Equal To |