HTML Entity for Image Of (⊷)

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

What Is the Image Of Entity?

Image Of (⊷) is the Mathematical Operators character at Unicode U+22B7 (IMAGE OF). In math and set theory it often marks the image of a set under a function — the set of all outputs for a given set of inputs.

Remember
Character     ⊷
Unicode       U+22B7
Hex entity    ⊷
Decimal       ⊷
Named entity  ⊷
CSS escape    \22B7

All of these produce the same glyph: ⊷. Prefer ⊷ in HTML source for clarity; use hex/decimal when generating entities, and CSS \22B7 only in content.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entity⊷HTML markup (best default)
Hex entity⊷HTML markup
Decimal entity⊷HTML markup
CSS escape\22B7Stylesheet content
Direct character⊷UTF-8 HTML text

When to Use Which

SituationUse
Readable math / set-theory HTML source⊷
Need a numeric entity in HTML⊷ or ⊷
Generated text via ::before / ::aftercontent: "\22B7"
UTF-8 page, typing is easyType ⊷ directly
Related “original of” symbol (⊶)⊶ / U+22B6 — different character

Live Preview

Image Of rendered in common UI contexts.

Inline math f(A) ⊷ B
Large glyph ⊷
Set notation im(f) ⊷ Y
Named entity ⊷ → ⊷
With entities Hex: ⊷ | Decimal: ⊷ | Named: ⊷

Complete HTML Example

One page that shows Image Of with the hex entity, decimal entity, named entity, and CSS escape. Use View Output or open the live editor.

Hex + Decimal + Named + CSS

All four ways to produce ⊷ in a single document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Image Of (⊷) in HTML</title>
  <style>
    #point::after {
      content: "\22B7";
    }
  </style>
</head>
<body>
  <p>Image Of using Hex Code: &#x22B7;</p>
  <p>Image Of using HTML Code: &#8887;</p>
  <p>Image Of using Named Entity: &imof;</p>
  <p id="point">Image Of using CSS Entity: </p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+22B7 → &#x22B7; in HTML. The browser turns it into ⊷.

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

3. Named: &imof; is the HTML5 name for this character — easiest to read in source.

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

Pitfalls & Tips

Common mistakes when working with the Image Of symbol.

Named

Prefer &imof;

Named form is clearer than numeric codes in hand-written HTML.

CSS vs HTML

Do not mix escapes

\22B7 belongs in CSS. &imof; / &#x22B7; / &#8887; belong in HTML.

Not <img>

Math symbol, not images

⊷ is Unicode math notation. Use <img> only when embedding pictures.

Related

Original Of is different

⊶ is U+22B6 (&origof;) — not the same as Image Of.

Semicolon

End references

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

Fonts

Math Operators support

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

Browser Support

Image Of (U+22B7) and its entity forms (&imof;, &#x22B7;, &#8887;, CSS \\22B7) are supported in all mainstream browsers when the font includes Mathematical Operators.

✓ Universal support

Image Of (⊷)

Use &imof;, 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+22B7 / entities Full support

Bottom line: Prefer &imof; in HTML for readability. Use &#x22B7; or &#8887; when encoding must be numeric, and \\22B7 only inside CSS content.

Key Takeaways

  • Unicode: Image Of is U+22B7 (decimal 8887).
  • HTML: prefer &imof;, or use &#x22B7; / &#8887;.
  • CSS: use \22B7 inside content for generated text.
  • Use case: set theory and function image notation — not the HTML <img> tag.

One line: U+22B7 → &imof; / &#x22B7; / &#8887; / CSS \22B7.

Frequently Asked Questions

Use &imof; (named), &#x22B7; (hex), &#8887; (decimal), or the CSS escape \22B7 in the content property. All render the Image Of symbol (⊷).
U+22B7 (IMAGE OF). Hex 22B7, decimal 8887. It belongs to the Mathematical Operators block.
Yes. &imof; is the named HTML5 entity for ⊷ and is supported in all modern browsers.
Use it in set theory, function notation, category theory, and technical docs where ⊷ means the image of a set under a mapping. Prefer &imof; for readable source, or numeric forms when generating markup.
HTML entities (&imof;, &#8887;, or &#x22B7;) go in markup. The CSS escape \22B7 is used in stylesheets (usually in the content property of ::before/::after). Both render ⊷.
No. ⊷ is a math symbol (U+22B7). The HTML <img> element embeds pictures — they are unrelated.

Did you know?

Image Of is Unicode U+22B7 (decimal 8887). HTML5 provides the named entity &imof; — prefer it for readable math markup, or use &#x22B7; / &#8887;.

Next: Image Of Or Approximately Equal To

Learn the HTML entity for ≓ — a related Image Of / approximation symbol.

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