HTML Entity for Multimap (⊸)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+22B8

What Is the Multimap Entity?

Multimap (⊸) is the mathematical multimap relation at Unicode U+22B8. HTML5 provides ⊸. In math, f : A ⊸ B denotes a multivalued map from A to B.

Remember
Character     ⊸
Unicode       U+22B8
Named entity  ⊸
Hex entity    ⊸
Decimal       ⊸
CSS escape    \22B8

Named, hex, decimal, CSS, and a typed character all produce the same glyph: ⊸.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entity⊸HTML markup (preferred)
Direct character⊸UTF-8 HTML text
Hex entity⊸HTML markup
Decimal entity⊸HTML markup
CSS escape\22B8Stylesheet content

When to Use Which

SituationUse
Multivalued map / relation notation⊸
Need an entity in HTML source⊸, ⊸, or ⊸
Generated text via ::before / ::aftercontent: "\22B8"
Single-valued maps-to (↦)Use ↦ (U+21A6) — not this page
C++ / programming containersWrite code — do not use this math entity

Live Preview

Multimap in a short relation and beside maps-to.

Example f : A ⊸ B
Large glyph ⊸
Named entity ⊸ → ⊸
vs ↦ ⊸  |  ↦
With entities Named: ⊸ | Hex: ⊸ | Decimal: ⊸

Complete HTML Example

One page that shows Multimap with named, hex, decimal, and CSS forms. Use View Output or open the live editor.

Named + Hex + Decimal + CSS

Four ways to produce ⊸ in a single document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Multimap (⊸)</title>
  <style>
    #point::after {
      content: "\22B8";
    }
  </style>
</head>
<body>
  <p>Using Named Entity: &mumap;</p>
  <p>Using Hex Code: &#x22B8;</p>
  <p>Using HTML Code: &#8888;</p>
  <p id="point">Using CSS Entity: </p>
  <p>Relation: f : A &mumap; B</p>
</body>
</html>
Try It Yourself

How It Works

1. Named: &mumap; is the clearest HTML form and renders ⊸.

2. Hex: U+22B8 → &#x22B8; in HTML. Same result as the named entity.

3. Decimal: same code point as 8888 → &#8888;. Same result as hex and named.

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

Pitfalls & Tips

Common mistakes when working with Multimap.

Prefer

Use &mumap;

The named form is clearer than numeric references and is defined in HTML5.

vs ↦

Not maps-to

&mapsto; is ↦ (single-valued). &mumap; is ⊸ (multivalued). Related, not interchangeable.

Meaning

Math, not C++

This entity is a Unicode relation symbol — not std::multimap or any key-value container.

CSS vs HTML

Do not mix escapes

\22B8 belongs in CSS. &mumap; / &#x22B8; / &#8888; belong in HTML.

Encoding

Declare UTF-8

If you type ⊸ directly, keep <meta charset="UTF-8"> so the file is not misread.

Semicolon

End references

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

Browser Support

Multimap (U+22B8) and its entity forms (&mumap;, &#x22B8;, &#8888;, CSS \\22B8) are supported in all mainstream browsers with a Unicode-capable font.

✓ Universal support

Multimap (&mumap;)

Encode with named, hex, decimal, or CSS escape — or type ⊸ directly in UTF-8 HTML.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer IE 9+
Yes*
U+22B8 / &mumap; Full support

Bottom line: Prefer &mumap; in mathematical HTML. Use \\22B8 only inside CSS content.

Key Takeaways

  • Unicode: Multimap is U+22B8 (decimal 8888).
  • HTML: prefer &mumap;.
  • CSS: use \22B8 inside content for generated text.
  • Lookalikes: not ↦ (&mapsto;) and not a programming container.

One line: U+22B8 → prefer &mumap; (also &#x22B8; / CSS \22B8).

Frequently Asked Questions

Use &mumap; (named), &#x22B8; (hex), &#8888; (decimal), or the CSS escape \22B8 in the content property. All render ⊸. Prefer &mumap; in mathematical HTML.
U+22B8 (MULTIMAP). Hex 22B8, decimal 8888. It belongs to the Mathematical Operators block.
Yes. HTML5 defines &mumap; for ⊸.
Use it in mathematics and set theory for multivalued maps or relations — for example f : A ⊸ B.
HTML entities (&mumap;, &#8888;, or &#x22B8;) go in markup. The CSS escape \22B8 is used in stylesheets (usually in the content property of ::before/::after). Both render ⊸.
Only by name. U+22B8 is a Unicode math relation symbol. It does not implement or represent a programming container.

Did you know?

Multimap is Unicode U+22B8 (decimal 8888) — MULTIMAP in Mathematical Operators. HTML5 provides &mumap;. It denotes a multivalued map or relation (e.g. f : A ⊸ B). It is a math symbol — not C++ std::multimap — and not the same as maps-to &mapsto; (↦).

Next: Multiplication

Continue with the multiplication sign (×) entity tutorial.

Multiplication 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