← Back to Blog

Plus Minus Symbol ± Copy & Paste: Math, Science & Keyboard

·7 min read

The plus minus symbol (±) indicates that a value can be either positive or negative. It shows up everywhere in mathematics, science, engineering, and manufacturing tolerances. Every variation is below, ready to copy.

All Plus Minus Symbols

SymbolNameUnicodeCopy
±Plus MinusU+00B1±
Minus PlusU+2213
+Plus SignU+002B+
Minus SignU+2212

What Does the Plus Minus Symbol Mean?

The ± symbol has two main uses in mathematics and science:

Common Uses in Real Life

How to Type the Plus Minus Symbol

Windows

Mac

Linux

iPhone & Android

LaTeX and HTML Codes

FormatCodeResult
LaTeX\pm±
LaTeX (minus plus)\mp
HTML Entity±±
HTML Decimal±±
CSS Content\00B1±

The Quadratic Formula: Why ± Matters

The most famous use of ± is in the quadratic formula. For any equation ax² + bx + c = 0, the solutions are x = (-b ± sqrt(b² - 4ac)) / 2a. The ± exists because squaring a number has two answers: 2² = 4, but (-2)² also equals 4. So the square root of 4 is ±2. Without the ±, you would lose half your solutions.

Plus Minus in Programming

Most programming languages do not have a built-in ± operator. Instead, developers write both cases explicitly. In Python, for example, the quadratic formula would be written as two separate calculations:

The ± symbol is mostly used in documentation, comments, and string output rather than actual code logic.

Related Symbols