HTML Entity for Image Of (⊷)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+22B7

What You'll Learn

How to display the Image Of symbol (⊷) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. The symbol denotes the image of a set under a function—the set of all outputs from a given set of inputs.

This character is U+22B7 (IMAGE OF) in the Mathematical Operators block (U+2200–U+22FF). Render it with ⊷, ⊷, ⊷, or CSS \22B7.

⚡ Quick Reference — Image Of

Unicode U+22B7

Mathematical Operators block

Hex Code ⊷

Hexadecimal reference

HTML Code ⊷

Decimal reference

Named Entity ⊷

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+22B7
Hex code       ⊷
HTML code      ⊷
Named entity   ⊷
CSS code       \22B7
Meaning        Image of a set under a function
CSS note       \22B7 or \022B7 in content property
1

Complete HTML Example

This example demonstrates the Image Of symbol (⊷) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\22B7";
  }
 </style>
</head>
<body>
<p>Image Of using Hexadecimal: &#x22B7;</p>
<p>Image Of using Decimal: &#8887;</p>
<p>Image Of using Named Entity: &imof;</p>
<p id="point">Image Of using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Image Of entity is universally supported in all modern browsers:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Image Of symbol rendered live in different contexts:

Large glyph
Named entity &imof; renders as ⊷
Set theory f(A) = { f(x) : xA }
Notation image of A under f
Numeric refs &#x22B7; &#8887; &imof; \22B7

🧠 How It Works

1

Hexadecimal Code

&#x22B7; uses the Unicode hexadecimal value 22B7 to display the Image Of symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#8887; uses the decimal Unicode value 8887 to display the same character. This is one of the most commonly used methods.

HTML markup
3

CSS Entity

\22B7 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
4

Named Entity

&imof; is the named entity for ⊷—easy to remember and clear in source HTML.

HTML markup
=

Same visual result

All four methods produce the glyph: . Unicode U+22B7 is in Mathematical Operators. Next: Image Of Or Approximately Equal To.

Use Cases

The Image Of symbol (⊷) commonly appears in the following scenarios:

∑ Set theory

Image of a set under a function (all f(x) for x in a given set).

📐 Math notation

Equations and definitions involving function images in algebra and analysis.

🔹 Category theory

Abstract algebra and category theory where image-of concepts appear.

📄 Technical docs

APIs, specifications, or formal methods using image/range notation.

🎓 Research

Papers in mathematics, computer science, or logic with correct symbols.

📚 E-learning

Set theory, discrete math, and related course materials.

💡 Best Practices

Do

  • Prefer &imof; for readable source markup
  • Keep one method (named, hex, or decimal) consistent per document
  • Use semantic HTML and aria-label for standalone math symbols when needed
  • Provide context (e.g. “image of A under f”) in mixed content
  • Test rendering across browsers and fonts

Don’t

  • Put CSS escape \22B7 in HTML text nodes
  • Confuse ⊷ (image of) with ≡ (identical to) or other relation symbols
  • Mix entity styles randomly in one file
  • Assume every font renders U+22B7 clearly
  • Skip UTF-8 (<meta charset="utf-8">) on math-heavy pages

Key Takeaways

1

Four methods all render ⊷

&#x22B7; &#8887; &imof;
2

For CSS stylesheets, use the escape in the content property

\22B7
3

Unicode U+22B7 belongs to the Mathematical Operators block (U+2200–U+22FF)

4

Prefer &imof; for readability in HTML source

❓ Frequently Asked Questions

Use &#x22B7; (hex), &#8887; (decimal), &imof; (named), or \22B7 in CSS content. All produce ⊷.
U+22B7 (IMAGE OF). Mathematical Operators block (U+2200–U+22FF). Hex 22B7, decimal 8887. Named entity: &imof;. Used for the image of a set under a function.
In mathematical notation and set theory, category theory, technical and academic documentation, textbooks and research papers, and content requiring image-of notation.
HTML entities (&imof;, &#8887;, or &#x22B7;) go in markup. The CSS escape \22B7 belongs in stylesheets, typically in the content property of pseudo-elements. Both render ⊷.
Yes. &imof; is the named HTML entity for ⊷ (image of). It is part of the HTML5 entity set and is well supported in modern browsers.

Explore More HTML Entities!

Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.

All HTML Entities →

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