HTML Entity for Minus Plus (∓)

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

What You'll Learn

How to display the minus plus sign (∓) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+2213 (MINUS OR PLUS SIGN) in the Mathematical Operators block (U+2200–U+22FF)—used when a quantity may be negative or positive, often paired with the plus-minus sign ± (U+00B1).

Render it with ∓, ∓, ∓, or CSS escape \2213. Do not confuse ∓ with plus-minus ± (±, U+00B1) or the minus sign − (U+2212)—each is a distinct operator.

⚡ Quick Reference — Minus Plus

Unicode U+2213

Mathematical Operators

Hex Code ∓

Hexadecimal reference

HTML Code ∓

Decimal reference

Named Entity ∓

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2213
Hex code       ∓
HTML code      ∓
Named entity   ∓
CSS code       \2213
Meaning        Minus or plus sign
Related        U+00B1 = plus-minus (±, ±)
               U+2212 = minus sign (−)
1

Complete HTML Example

This example demonstrates the minus plus sign (∓) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\2213";
  }
 </style>
</head>
<body>
<p>Minus Plus using Hexadecimal: &#x2213;</p>
<p>Minus Plus using HTML Code: &#8723;</p>
<p>Minus Plus using Named Entity: &mnplus;</p>
<p id="point">Minus Plus using CSS Entity: </p>
<p>Example: x = 5 &mnplus; 2</p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The minus plus sign is widely supported in modern browsers:

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

👀 Live Preview

See the minus plus sign (∓) in mathematical contexts:

Expression x = 5 ∓ 2
Large glyph
Named entity &mnplus; → ∓
vs plus-minus ∓ minus-plus   ± plus-minus
Numeric refs &#x2213; &#8723; \2213

🧠 How It Works

1

Hexadecimal Code

&#x2213; uses the Unicode hexadecimal value 2213 to display the minus plus sign. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#8723; uses the decimal Unicode value 8723 to display the same character.

HTML markup
3

CSS Entity

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

CSS stylesheet
4

Named Entity

&mnplus; is the standard named HTML entity for the minus or plus sign—easy to read and remember in source markup.

HTML markup
=

Same visual result

All four methods produce (∓). Unicode U+2213 is in Mathematical Operators. Prefer &mnplus; for readable HTML source.

Use Cases

The minus plus sign (∓) is commonly used in:

📈 Mathematics

Expressions where a value may be negative or positive.

🔬 Physics

Particle charge notation and symmetric uncertainty ranges.

⚙️ Engineering

Tolerance specs paired with plus-minus notation.

📚 Education

Online math courses, quizzes, and formula references.

💻 Technical docs

Scientific papers, APIs, and engineering documentation.

📄 Reference guides

HTML entity tutorials and Unicode symbol documentation.

💡 Best Practices

Do

  • Use &mnplus; for minus-or-plus in mathematical notation
  • Distinguish ∓ from plus-minus ± (&plusmn;)
  • Pair conceptually with ± when showing both sign conventions
  • Serve pages with UTF-8 (<meta charset="utf-8">)
  • Consider MathML for complex formulas

Don’t

  • Confuse ∓ (minus-plus) with ± (plus-minus)
  • Use ∓ when you mean subtraction minus −
  • Put CSS escape \2213 in HTML text nodes
  • Use HTML entities in JS (use \u2213)
  • Use padded Unicode notation like U+02213—the correct value is U+2213

Key Takeaways

1

Four HTML/CSS references all render ∓

&#x2213; &#8723; &mnplus;
2

For CSS stylesheets, use \2213 in the content property

3

Unicode U+2213 — MINUS OR PLUS SIGN

4

Prefer &mnplus; for readability in HTML source

5

Not the same as plus-minus ± (U+00B1, &plusmn;)

❓ Frequently Asked Questions

Use &#x2213; (hex), &#8723; (decimal), &mnplus; (named), or \2213 in CSS content. All produce ∓.
U+2213 (MINUS OR PLUS SIGN). Mathematical Operators block (U+2200–U+22FF). Hex 2213, decimal 8723. Named HTML entity: &mnplus;.
For mathematical expressions where a value may be minus or plus, antiparticle notation, and scientific formulas with symmetric sign conventions.
∓ is U+2213 (MINUS OR PLUS, &mnplus;). ± is U+00B1 (PLUS-MINUS, &plusmn;). They are different characters with opposite sign order.
HTML references (&#8723;, &#x2213;, or &mnplus;) go directly in markup. The CSS escape \2213 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, punctuation, and symbols.

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