Math

Greater-Than or Equal To ≥

The greater-than-or-equal-to symbol indicates that a value is greater than or equal to another value. Paired with ≤, it forms the complete set of non-strict comparison operators used throughout mathematics, statistics, and computer science documentation.

All Representations

Named Entity
≥
Decimal Code
≥
Hex Code
≥
Unicode
U+2265

Rendered Output

≥ renders as the character shown above

When to Use Greater-Than or Equal To

Use the greater-than-or-equal entity in mathematical inequalities, constraint definitions, and minimum-requirement specifications. It is the typographic counterpart to the >= operator in programming languages. Using the proper mathematical symbol improves readability in technical and academic web content.

Try It — HTML Examples

Named entity in text
<p>Symbol: &ge;</p>
Decimal reference
<p>Symbol: &#8805;</p>
Hex reference
<p>Symbol: &#x2265;</p>
Inside an HTML attribute
<div title="The Greater-Than or Equal To: &ge;">Hover to see</div>

About the Greater-Than or Equal To Entity

The Greater-Than or Equal To character (≥) is a standard HTML entity defined in the HTML specification. In HTML source code, it can be written using the named entity reference &ge;, the decimal numeric character reference &#8805;, or the hexadecimal numeric reference &#x2265;. The character is assigned Unicode code point U+2265 in the Universal Character Set.

The greater-than-or-equal-to symbol indicates that a value is greater than or equal to another value. Paired with &le;, it forms the complete set of non-strict comparison operators used throughout mathematics, statistics, and computer science documentation.

Mathematical HTML entities enable web authors to display proper mathematical notation without relying on images or specialized rendering libraries like MathJax or KaTeX. While complex equations and multi-line formulas may still benefit from dedicated math typesetting tools, individual symbols expressed as HTML entities render quickly, remain accessible to screen readers, and can be styled with CSS just like regular text content.

When deciding how to encode the Greater-Than or Equal To character in your HTML documents, the named entity &ge; is generally the most readable choice for developers reviewing or maintaining source code. The decimal form &#8805; and hexadecimal form &#x2265; are equally valid alternatives that work in contexts where named entities may not be supported, or when generating HTML output programmatically from server-side code. All three representations produce identical visual output in every modern web browser.

Use the greater-than-or-equal entity in mathematical inequalities, constraint definitions, and minimum-requirement specifications. It is the typographic counterpart to the >= operator in programming languages. Using the proper mathematical symbol improves readability in technical and academic web content.

Related Entities

Explore More HTML Entities

Browse our complete reference of 262 HTML entities with codes, examples, and usage tips.