HTML Entity for Multimap (⊸)

What You'll Learn
How to display the Multimap symbol (⊸) in HTML using named, hexadecimal, decimal, and CSS escape methods. This character is U+22B8 (MULTIMAP) in the Mathematical Operators block (U+2200–U+22FF)—a relation symbol used for multivalued maps, for example “f : A ⊸ B.”
Render it with the named entity ⊸, ⊸, ⊸, or CSS escape \22B8. This is a mathematical Unicode symbol—not related to C++ std::multimap or key-value containers in programming. Do not confuse ⊸ with maps-to ↦ (↦, ↦) or ordinary function arrow notation.
⚡ Quick Reference — Multimap
U+22B8Mathematical Operators
⊸Hexadecimal reference
⊸Decimal reference
⊸Multimap (most readable)
Name Value
──────────── ──────────
Unicode U+22B8
Hex code ⊸
HTML code ⊸
Named entity ⊸
CSS code \22B8
Meaning Multimap / multivalued relation
Related U+21A6 = maps to (↦, ↦)
U+22A7 = models (⊧, ⊧)Complete HTML Example
This example demonstrates the Multimap symbol (⊸) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\22B8";
}
</style>
</head>
<body>
<p>Multimap using Hexadecimal: ⊸</p>
<p>Multimap using HTML Code: ⊸</p>
<p>Multimap using Named Entity: ⊸</p>
<p id="point">Multimap using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+22B8 is supported in modern browsers; use a font with Mathematical Operators coverage for consistent glyphs:
👀 Live Preview
See the Multimap symbol (⊸) in mathematical relation notation:
🧠 How It Works
Named Entity
⊸ is the HTML named entity for Multimap—often preferred in readable mathematical markup.
Hexadecimal Code
⊸ uses the Unicode hexadecimal value 22B8. The x prefix indicates hexadecimal format.
Decimal HTML Code
⊸ uses the decimal Unicode value 8888 to display the same character.
CSS Entity
\22B8 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce: ⊸. Unicode U+22B8 in Mathematical Operators. For single-valued maps, see maps-to (↦, ↦).
Use Cases
The Multimap symbol (⊸) is commonly used in:
Multivalued maps and relations between sets (f : A ⊸ B).
Mathematics papers, textbooks, and lecture notes on relations.
Formal semantics and relation notation in theoretical CS content.
Online courses on discrete math, logic, and set theory.
Unicode charts and HTML entity documentation.
Math symbol pickers and character reference cheat sheets.
💡 Best Practices
Do
- Use
⊸for readable HTML source in math notation - Distinguish ⊸ (multimap) from ↦ (maps-to / single-valued)
- Use fonts that cover Mathematical Operators (Cambria Math, etc.)
- Add
aria-label(e.g. “multimap”) for accessibility - Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Confuse this math symbol with C++
std::multimapcontainers - Assume
⊸creates or stores key-value data in HTML - Put CSS escape
\22B8in HTML text nodes - Mix entity styles randomly in one file
- Rely on the symbol alone without accessible description
Key Takeaways
Three HTML references plus CSS all render ⊸
⊸ ⊸ ⊸For CSS stylesheets, use the escape in the content property
\22B8Unicode U+22B8 — MULTIMAP
⊸ is the standard named entity
Math symbol only—not a programming data structure
❓ Frequently Asked Questions
⊸ (named), ⊸ (hex), ⊸ (decimal), or \22B8 in CSS content. All produce ⊸.U+22B8 (MULTIMAP). Mathematical Operators block (U+2200–U+22FF). Hex 22B8, decimal 8888. Named entity: ⊸.⊸, ⊸, or ⊸) go directly in markup. The CSS escape \22B8 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.Explore More HTML Entities!
Discover 1500+ HTML character references — math operators, relations, and more.
8 people found this page helpful
