| Nom du symbole | Greater-Than Or Equal To |
| Version Unicode | 1.1 |
| Unicode | U+2265 |
| Bloc Unicode | |
| Catégorie générale | Math Symbol (Sm) |
| UTF-8 | E2 89 A5 |
| UTF-16 | 2265 |
| UTF-32 | 00002265 |
1\documentclass{article}2\usepackage{pifont}3\ge4\end{document}Vous pouvez saisir le symbole greater-than or equal to sur la plupart des appareils modernes avec les méthodes suivantes :
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>La représentation du symbole Greater-Than Or Equal To dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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" |
| Code CSS |
\2265 |
| Code hexadécimal | 0x2265 |
| Code HTML | ≥ |
| LaTeX | \ge |
| Symbole | ≥ |
| Encodage URL (pourcent UTF-8) | %E2%89%A5 |
| Nom oral / lecteur d’écran | Greater Than Or Equal To |