Math

Approximately Equal To ≈

The approximately-equal symbol is an alias for the almost-equal-to character (≈), using the HTML5 named entity ≈. Both ≈ and ≈ produce the same double-tilde character. This entity name may be more intuitive for developers who think in terms of 'approximate' rather than 'asymptotic.'

All Representations

Named Entity
≈
Decimal Code
≈
Hex Code
≈
Unicode
U+2248

Rendered Output

≈ renders as the character shown above

When to Use Approximately Equal To

Use ≈ interchangeably with ≈ for approximate equality in mathematical and scientific content. The choice between the two entity names is purely stylistic — both resolve to the same Unicode character U+2248. Use whichever name is more readable in your HTML source code.

Try It — HTML Examples

Named entity in text
<p>Symbol: &approx;</p>
Decimal reference
<p>Symbol: &#8776;</p>
Hex reference
<p>Symbol: &#x2248;</p>
Inside an HTML attribute
<div title="The Approximately Equal To: &approx;">Hover to see</div>

About the Approximately Equal To Entity

The Approximately 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 &approx;, the decimal numeric character reference &#8776;, or the hexadecimal numeric reference &#x2248;. The character is assigned Unicode code point U+2248 in the Universal Character Set.

The approximately-equal symbol is an alias for the almost-equal-to character (≈), using the HTML5 named entity &approx;. Both &asymp; and &approx; produce the same double-tilde character. This entity name may be more intuitive for developers who think in terms of 'approximate' rather than 'asymptotic.'

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 Approximately Equal To character in your HTML documents, the named entity &approx; is generally the most readable choice for developers reviewing or maintaining source code. The decimal form &#8776; and hexadecimal form &#x2248; 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 &approx; interchangeably with &asymp; for approximate equality in mathematical and scientific content. The choice between the two entity names is purely stylistic — both resolve to the same Unicode character U+2248. Use whichever name is more readable in your HTML source code.

Related Entities

Explore More HTML Entities

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