HTML Entity for Image Of Or Approximately Equal To (≓)

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

What Is the Image Of Or Approximately Equal To Entity?

Image Of Or Approximately Equal To (≓) is the Mathematical Operators character at Unicode U+2253 (IMAGE OF OR APPROXIMATELY EQUAL TO). It combines “image of” with approximate equality in math notation.

Remember
Character     ≓
Unicode       U+2253
Hex entity    ≓
Decimal       ≓
CSS escape    \2253
Named entity  (none)

All of these produce the same glyph: ≓. Prefer typing ≓ in UTF-8 page text; use entities for CSS content, generated markup, or when encoding must be explicit.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct character≓UTF-8 HTML text (default choice)
Hex entity≓HTML markup
Decimal entity≓HTML markup
CSS escape\2253Stylesheet content
Named entity—Not defined in HTML5

When to Use Which

SituationUse
Normal math text on a UTF-8 pageType ≓
Need an entity in HTML source≓ or ≓
Generated text via ::before / ::aftercontent: "\2253"
Looking for a named &...; formDoes not exist — use numeric form
Related symbol ≒ (U+2252)Different character — Approximately Equal To Or Image Of

Live Preview

Image Of Or Approximately Equal To rendered in common UI contexts.

Inline math f(A) ≓ B
Large glyph ≓
Compare ⊷ image of  ≈ approx  ≓ combined
Monospace im(f) ≓ Y
With entities Hex: ≓ | Decimal: ≓

Complete HTML Example

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

Hex + Decimal + CSS + Typed

All four ways to produce ≓ in a single document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Image Of Or Approximately Equal To (≓) in HTML</title>
  <style>
    #point::after {
      content: "\2253";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x2253;</p>
  <p>Using HTML Code: &#8787;</p>
  <p id="point">Using CSS Entity: </p>
  <p>Typed directly: ≓</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+2253 → &#x2253; in HTML. The browser turns it into ≓.

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

3. CSS: use \2253 in content (not an HTML entity). #point::after appends that ≓ after the paragraph text.

4. Typed ≓: best for normal UTF-8 text. All four lines show the same symbol.

Pitfalls & Tips

Common mistakes when working with this symbol.

Named?

No named entity

HTML5 does not define a named entity for U+2253. Use numeric forms.

CSS vs HTML

Do not mix escapes

\2253 belongs in CSS. &#x2253; / &#8787; belong in HTML.

Look-alikes

Not the same as ⊷ or ≒

⊷ is U+22B7; ≒ is U+2252. Pick the code point your notation requires.

Default

Type ≓ when you can

Entities are for encoding needs — not required for ordinary UTF-8 body text.

Semicolon

End references

Always finish with ; — write &#8787;, not &#8787.

Fonts

Math Operators support

Use fonts that include U+2253 (e.g. Cambria Math, Noto Sans Math, Segoe UI Symbol) so the glyph is not missing.

Browser Support

Image Of Or Approximately Equal To (U+2253) and its numeric entity forms (&#x2253;, &#8787;, CSS \\2253) are supported in all mainstream browsers when the font includes Mathematical Operators.

✓ Universal support

Image Of Or ≈ Equal (≓)

Type ≓, or encode with hex, decimal, or CSS escape — same glyph everywhere fonts support it.

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+2253 / entities Full support

Bottom line: Use a typed ≓ for normal text. Prefer &#x2253; or &#8787; in HTML when encoding must be explicit, and \\2253 only inside CSS content.

Key Takeaways

  • Unicode: this symbol is U+2253 (decimal 8787).
  • HTML: use &#x2253; or &#8787; when you need an entity.
  • CSS: use \2253 inside content for generated text.
  • Default: type ≓ directly unless encoding requires an entity.

One line: U+2253 → type ≓, or encode as &#x2253; / &#8787; / CSS \2253.

Frequently Asked Questions

Use &#x2253; (hex), &#8787; (decimal), or the CSS escape \2253 in the content property. All render ≓. There is no named HTML entity.
U+2253 (IMAGE OF OR APPROXIMATELY EQUAL TO). Hex 2253, decimal 8787. It belongs to the Mathematical Operators block.
No. HTML5 does not define a named entity for U+2253. Use numeric references like &#x2253; or &#8787; when you need an entity form.
Use it in math and technical docs where ≓ combines “image of” with approximate equality. Prefer numeric entities when encoding must be explicit; type ≓ directly in UTF-8 pages when convenient.
HTML entities (&#8787; or &#x2253;) go in markup. The CSS escape \2253 is used in stylesheets (usually in the content property of ::before/::after). Both render ≓.
⊷ is Image Of (U+22B7). ≒ is Approximately Equal To Or Image Of (U+2252). ≓ is Image Of Or Approximately Equal To (U+2253) — a different code point.

Did you know?

Image Of Or Approximately Equal To is Unicode U+2253 (decimal 8787). HTML5 has no named entity for it — use &#x2253; or &#8787; when you need an entity form.

Next: Increment

Learn the HTML entity for the Increment symbol (∆) — next in this entity sequence.

Increment 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