Original Of (⊶) is the Mathematical Operators character at Unicode U+22B6 (ORIGINAL OF). In math and set theory it often marks the original (preimage) of a set under a function — the set of all inputs that map into a given set of outputs.
All of these produce the same glyph: ⊶. Prefer ⊶ in HTML source for clarity; use hex/decimal when generating entities, and CSS \22B6 only in content.
With entitiesHex: ⊶ | Decimal: ⊶ | Named: ⊶
Code
Complete HTML Example
One page that shows Original 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>Original Of (⊶) in HTML</title>
<style>
#point::after {
content: "\22B6";
}
</style>
</head>
<body>
<p>Original Of using Hex Code: ⊶</p>
<p>Original Of using HTML Code: ⊶</p>
<p>Original Of using Named Entity: ⊶</p>
<p id="point">Original Of using CSS Entity: </p>
</body>
</html>
\22B6 belongs in CSS. ⊶ / ⊶ / ⊶ belong in HTML.
Semicolon
End references
Always finish with ; — write ⊶, not &origof.
Fonts
Math Operators support
Use fonts that include U+22B6 (e.g. Segoe UI Symbol, Noto Sans Math, Cambria Math) so the glyph is not missing.
Compatibility
Browser Support
Original Of (U+22B6) and its entity forms (⊶, ⊶, ⊶, CSS \\22B6) are supported in all mainstream browsers when the font includes Mathematical Operators.
✓ Universal support
Original Of (⊶)
Use ⊶, or encode with hex, decimal, or CSS escape — same glyph everywhere fonts support it.
100%Browser coverage
Google ChromeSupported
Yes
Microsoft EdgeSupported
Yes
Mozilla FirefoxSupported
Yes
Apple SafariSupported
Yes
OperaSupported
Yes
Internet ExplorerAll versions
Yes
U+22B6 / entitiesFull support
Bottom line: Prefer ⊶ in HTML for readability. Use ⊶ or ⊶ when encoding must be numeric, and \\22B6 only inside CSS content.
Remember
Key Takeaways
Unicode: Original Of is U+22B6 (decimal 8886) — glyph ⊶.
Use ⊶ (named), ⊶ (hex), ⊶ (decimal), or the CSS escape \22B6 in the content property. All render the Original Of symbol (⊶).
U+22B6 (ORIGINAL OF). Hex 22B6, decimal 8886. It belongs to the Mathematical Operators block.
Yes. ⊶ is the named HTML5 entity for ⊶ and is supported in all modern browsers.
Use it in set theory and function notation where ⊶ means the original (preimage) of a set under a mapping. Prefer ⊶ for readable source, or numeric forms when generating markup.
HTML entities (⊶, ⊶, or ⊶) go in markup. The CSS escape \22B6 is used in stylesheets (usually in the content property of ::before/::after). Both render ⊶.