HTML Entity for Original Of (⊶)

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

What You'll Learn

How to display the Original Of symbol (⊶) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. The symbol denotes the original (preimage) of a set under a function—the set of all inputs that map into a given set of outputs.

This character is U+22B6 (ORIGINAL OF) in the Mathematical Operators block (U+2200–U+22FF). Render it with ⊶, ⊶, ⊶, or CSS \22B6. Do not confuse ⊶ with Image Of ⊷ (⊷, U+22B7) or with copyright © (©).

⚡ Quick Reference — Original Of

Unicode U+22B6

Mathematical Operators

Hex Code ⊶

Hexadecimal reference

HTML Code ⊶

Decimal reference

Named Entity ⊶

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+22B6
Hex code       ⊶
HTML code      ⊶
Named entity   ⊶
CSS code       \22B6
Meaning        Original of (preimage notation)
Related        U+22B7 = image of (⊷, ⊷)
               U+2208 = element of (∈, ∈)
               U+00A9 = copyright (©, ©) — different
Block          Mathematical Operators (U+2200–U+22FF)
1

Complete HTML Example

A simple example showing ⊶ using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\22B6";
  }
 </style>
</head>
<body>
<p>Original of (hex): &#x22B6;</p>
<p>Original of (decimal): &#8886;</p>
<p>Original of (named): &origof;</p>
<p id="point">Original of (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Original Of entity is widely supported in all modern browsers:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the Original Of symbol (⊶) in mathematical notation contexts:

Large glyph
Named entity &origof; renders as ⊶
Set notation fB = { xA | f(x) ∈ B }
Paired symbol Original ⊶  |  Image ⊷
Numeric refs &#x22B6; &#8886; &origof; \22B6

🧠 How It Works

1

Hexadecimal Code

&#x22B6; uses the Unicode hexadecimal value 22B6 to display the original of symbol.

HTML markup
2

Decimal HTML Code

&#8886; uses the decimal Unicode value 8886 for the same character.

HTML markup
3

Named Entity

&origof; is the readable named HTML entity for U+22B6—preferred in math-heavy markup when supported.

HTML markup
4

CSS Entity

\22B6 is used in CSS stylesheets in the content property of pseudo-elements for generated math labels.

CSS stylesheet
=

Mathematical notation result

All four methods render . Unicode U+22B6 in Mathematical Operators. Next: Orthodox Cross (☦).

Use Cases

The Original Of symbol (⊶) is commonly used in:

📚 Set theory

Preimage notation: the original of a set under a function or mapping.

📐 Category theory

Morphisms and functor notation alongside image-of ⊷.

📝 Academic papers

Textbooks, lecture notes, and research articles in HTML or PDF-to-web formats.

💻 Math web apps

Online calculators, proof assistants, and notation-heavy documentation sites.

📋 Entity references

Character pickers and HTML entity documentation for math symbols.

🛠 Technical docs

API docs and specs that embed formal mathematical definitions inline.

♿ Accessibility

Prefer MathML or alt text for complex formulas; use ⊶ with surrounding context.

💡 Best Practices

Do

  • Prefer &origof; for readable math markup when supported
  • Use &#x22B6; or &#8886; as numeric fallbacks
  • Pair with Image Of (⊷) when both preimage and image notation are needed
  • Set <meta charset="utf-8"> for reliable rendering
  • Consider MathML for complex multi-line equations

Don’t

  • Use ⊶ for copyright or trademark—use &copy; or &reg; instead
  • Confuse original of ⊶ with image of ⊷
  • Use padded Unicode notation like U+022B6—the correct value is U+22B6
  • Use CSS escape \22B6 in HTML text nodes
  • Rely on symbol fonts alone without UTF-8 or entity encoding

Key Takeaways

1

Four ways to render U+22B6: hex, decimal, named, and CSS

&#x22B6; &origof;
2

Named entity &origof; is the most readable HTML option

3

Unicode U+22B6 — ORIGINAL OF (preimage notation)

4

Mathematical symbol, not copyright or legal markup

❓ Frequently Asked Questions

Use &#x22B6; (hex), &#8886; (decimal), &origof; (named entity), or \22B6 in CSS content. All four render ⊶.
U+22B6 (ORIGINAL OF). Mathematical Operators block (U+2200–U+22FF). Hex 22B6, decimal 8886, named entity &origof;.
No. ⊶ is a mathematical relation symbol for preimage/original-of notation. Copyright is © (&copy;) and registered trademark is ® (&reg;).
For set theory, category theory, academic papers, math web apps, and any content requiring original-of (preimage) notation under a function or mapping.
Yes. &origof; is the named HTML entity for ⊶ (U+22B6) and is well supported in modern browsers alongside numeric references.

Explore More HTML Entities!

Discover 1500+ HTML character references — punctuation, symbols, 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