HTML Entity for Approximately Equal To (≅)

Beginner
6 min read
Updated: Sep 2026
1 example
Unicode U+2245

What Is Approximately Equal To?

Approximately equal to (≅) is Unicode U+2245 in the Mathematical Operators block. It is the relation for approximate equality (many courses also read it as congruent). HTML provides the named entity ≅.

Remember
Character     ≅
Unicode       U+2245
Hex entity    ≅
Decimal       ≅
Named entity  ≅
CSS escape    \2245
Not the same  ≈ U+2248 · ≡ U+2261 · ≆ U+2246

All of these produce the same glyph: ≅. Prefer ≅ in hand-written HTML; type ≅ in UTF-8 when you can; use numeric or CSS forms for generated content.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct character≅HTML text (UTF-8)
Named entity≅HTML markup (preferred name)
Hex entity≅HTML markup
Decimal entity≅HTML markup
CSS escape\2245Stylesheet content

When to Use Which

SituationUse
Approximately equal / congruent-style relation≅ or type ≅
Almost equal (informal ≈)≈ (U+2248) / ≈
Approximately but not actually equal≆ (U+2246)
Need an entity in HTML source≅, ≅, or ≅
Generated text via ::before / ::aftercontent: "\2245"

Live Preview

Approximately-equal-to symbol in common study contexts.

Inline math a ≅ b
Large glyph ≅
vs. related operators ≅ approx · ≈ almost · ≡ identical
Geometry-style ΔABC ≅ ΔDEF
With entities Named: ≅ | Hex: ≅ | Decimal: ≅

Complete HTML Example

One page that shows ≅ with hex, decimal, named entity, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + Named + CSS + Typed

Five ways to produce ≅ in a single document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Approximately Equal To (≅) in HTML</title>
  <style>
    #point::after {
      content: "\2245";
    }
  </style>
</head>
<body>
  <p>Approx. equal using Hex Code: &#x2245;</p>
  <p>Approx. equal using HTML Code: &#8773;</p>
  <p>Approx. equal using Named Entity: &cong;</p>
  <p id="point">Approx. equal using CSS Entity: </p>
  <p>Typed directly: ≅</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+2245 → &#x2245; in HTML. The browser turns it into ≅.

2. Decimal: same code point as 8773 → &#8773;. Same result as hex.

3. Named: &cong; is the standard HTML name for U+2245 — clear in source (often glossed “congruent”).

4. CSS: use \2245 in content (not an HTML entity). #point::after appends that ≅ after the paragraph text.

5. Typed ≅: fine in UTF-8 source. All five lines show the same glyph.

Pitfalls & Tips

Common mistakes when working with approximately equal to (≅).

≈

Not almost equal

≅ is approximately equal. For informal “about equal” use ≈.

≡

Not identical to

≡ (U+2261) is a different Mathematical Operators relation (triple bar).

≆

Not “but not actually equal”

≆ (U+2246) means approximately but not actually equal.

CSS vs HTML

Do not mix escapes

\2245 belongs in CSS. &cong; / &#x2245; belong in HTML.

Fonts

Use math-capable fonts

Some UI fonts omit Mathematical Operators. Prefer fonts with solid math coverage.

Semicolon

End references

Always finish with ; — write &cong;, not &cong.

Browser Support

Approximately equal to (U+2245) and its entity forms (&cong;, &#x2245;, &#8773;, CSS \\2245) are supported in all mainstream browsers. Glyph availability depends on font support for Mathematical Operators.

✓ Universal support

Approximately Equal To (≅)

Type ≅, or encode with named, hex, decimal, or CSS escape — same glyph everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+2245 / entities Full support

Bottom line: Prefer &cong; or a typed ≅ for normal text. Use numeric forms when generating markup, and \\2245 only inside CSS content.

Key Takeaways

  • Unicode: approximately equal to is U+2245 (decimal 8773).
  • HTML: prefer &cong; (or &#x2245; / &#8773;).
  • CSS: use \2245 inside content for generated text.
  • Watch out: ≅ ≠ ≈ ≠ ≡ ≠ ≆.

One line: U+2245 → &cong; / &#x2245; / &#8773; / CSS \2245.

Frequently Asked Questions

Use &#x2245; (hex), &#8773; (decimal), &cong; (named), or the CSS escape \2245 in the content property. All render ≅. You can also paste ≅ directly if your file is UTF-8.
U+2245 (hex 2245, decimal 8773). Unicode names it APPROXIMATELY EQUAL TO. It belongs to the Mathematical Operators block (U+2200–U+22FF).
Yes. &cong; maps to U+2245. Prefer it in hand-written HTML; numeric forms are useful in generated markup.
Use ≅ for approximately equal / congruent-style notation when your curriculum requires it. Use ≈ (U+2248) for almost equal, and ≡ (U+2261) for identical to — different operators.
HTML entities (&#8773;, &#x2245;, or &cong;) go in markup. The CSS escape \2245 is used in stylesheets (usually in the content property of ::before/::after). Both render ≅.
Yes in HTML entity naming — &cong; is the named reference for U+2245. Many geometry courses read ≅ as congruent; always match your textbook’s definition.

Did you know?

Approximately equal to is Unicode U+2245 (decimal 8773) in the Mathematical Operators block. HTML provides &cong; for ≅ (often glossed “congruent” in entity lists). It is not the same as ≈ (almost equal) or ≡ (identical to).

Next: Approximately Equal To or the Image Of

Learn the HTML entity for approximately equal to or the image of (≒) used in mathematical relations.

Next tutorial →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful