Complete Arithmetic Operators
Click on a symbol to get its Unicode, LaTeX, HTML, and SVG source code.
🔢 About Arithmetic Operators
A comprehensive reference of 34 arithmetic and mathematical operators, providing Unicode, LaTeX commands, and HTML entities for each symbol.
This page provides a complete reference for 34 arithmetic and mathematical operators. Each entry includes the symbol's Unicode code point, LaTeX command, HTML entity, and the ability to copy SVG vector code or download a transparent PNG image.
➕ Basic Arithmetic Operators
+ is called the "Plus Sign Symbol". It represents addition or indicates a positive number. Its Unicode is U+002B, the LaTeX command is +, and the HTML entity is +.
− is called the "Minus Sign Symbol". It represents subtraction or indicates a negative number. Note that this is the proper minus sign (U+2212), which differs from the hyphen (-). Its Unicode is U+2212, the LaTeX command is - or \minus, and the HTML entity is −.
× is called the "Multiplication Sign Symbol". It represents the multiplication operation. Its Unicode is U+00D7, the LaTeX command is \times, and the HTML entity is ×.
÷ is called the "Division Sign Symbol". It represents the division operation. Its Unicode is U+00F7, the LaTeX command is \div, and the HTML entity is ÷.
± is called the "Plus-Minus Sign Symbol". It indicates that a value can be either positive or negative. Its Unicode is U+00B1, the LaTeX command is \pm, and the HTML entity is ±.
∓ is called the "Minus-Plus Sign Symbol". It is the inverse of the plus-minus sign, often used in conjunction with it. Its Unicode is U+2213, the LaTeX command is \mp, and the HTML entity is ∓.
∕ is called the "Division Slash Symbol". It is used as a fraction slash for inline fractions. Its Unicode is U+2215, the LaTeX command is \slash, and the HTML entity is ∕.
⁄ is called the "Fraction Slash Symbol". It is used to build fractions in plain text. Its Unicode is U+2044, the LaTeX command is /, and the HTML entity is ⁄.
✖️ Multiplication Variants
· is called the "Dot Operator Symbol". It represents multiplication or the dot product in vector algebra. Its Unicode is U+00B7, the LaTeX command is \cdot, and the HTML entity is ·.
* is called the "Asterisk Symbol". It is commonly used as a multiplication operator in programming and plain text contexts. Its Unicode is U+002A, the LaTeX command is *, and the HTML entity is *.
^ is called the "Caret Symbol". It represents exponentiation in many programming languages. Its Unicode is U+005E, the LaTeX command is ^ (in math mode), and the HTML entity is ^.
** is called the "Double Asterisk Symbol". It represents exponentiation in some programming languages like Python and Ruby. Its Unicode sequence is U+002A U+002A, and the HTML entity is **.
√ Roots and Radicals
√ is called the "Square Root Symbol". It represents the principal square root of a number. Its Unicode is U+221A, the LaTeX command is \sqrt{}, and the HTML entity is √.
∛ is called the "Cube Root Symbol". It represents the cube root of a number. Its Unicode is U+221B, the LaTeX command is \sqrt[3]{}, and the HTML entity is ∛.
∜ is called the "Fourth Root Symbol". It represents the fourth root of a number. Its Unicode is U+221C, the LaTeX command is \sqrt[4]{}, and the HTML entity is ∜.
❗ Factorials
! is called the "Factorial Symbol". It represents the product of all positive integers less than or equal to n (n! = 1 × 2 × ... × n). Its Unicode is U+0021, the LaTeX command is !, and the HTML entity is !.
!! is called the "Double Factorial Symbol". It represents the product of every other integer (n!! = n × (n-2) × ... until 1 or 2). Its Unicode sequence is U+0021 U+0021, the LaTeX command is !!, and the HTML entity is !!.
📊 Percentages and Ratios
% is called the "Percent Sign Symbol". It represents one part per hundred. Its Unicode is U+0025, the LaTeX command is \%, and the HTML entity is %.
‰ is called the "Permille Sign Symbol". It represents one part per thousand. Its Unicode is U+2030, the LaTeX command is \permil, and the HTML entity is ‰.
‱ is called the "Ten-Thousandth Sign Symbol" or "Basis Point Symbol". It represents one part per ten thousand. Its Unicode is U+2031, the LaTeX command is \pertenthousand, and the HTML entity is ‱.
∶ is called the "Ratio Symbol". It represents a proportional relationship between quantities. Its Unicode is U+2236, the LaTeX command is \colon or :, and the HTML entity is ∶.
∷ is called the "Proportion Symbol". It indicates that two ratios are equal. Its Unicode is U+2237, the LaTeX command is \Colon or \propto, and the HTML entity is ∷.
∑ Large Operators
∑ is called the "Summation Symbol". It represents the sum of a sequence of numbers. Its Unicode is U+2211, the LaTeX command is \sum, and the HTML entity is ∑.
∏ is called the "Product Symbol". It represents the product of a sequence of numbers. Its Unicode is U+220F, the LaTeX command is \prod, and the HTML entity is ∏.
∐ is called the "Coproduct Symbol". It represents the coproduct operation in category theory. Its Unicode is U+2210, the LaTeX command is \coprod, and the HTML entity is ∐.
⅀ is called the "Double Integral Symbol". It is a variant of the integral symbol used in some mathematical contexts. Its Unicode is U+2140, the LaTeX command is \int, and the HTML entity is ⅀.
🔢 Number Theory and Divisibility
∣ is called the "Divides Symbol". It indicates that one integer divides another (a ∣ b means a divides b). Its Unicode is U+2223, the LaTeX command is \mid, and the HTML entity is ∣.
∤ is called the "Does Not Divide Symbol". It indicates that one integer does not divide another. Its Unicode is U+2224, the LaTeX command is \nmid, and the HTML entity is ⊤.
⩧ is called the "Double Equals Symbol". It is used for equivalence relations or custom equality operators. Its Unicode is U+2A67, the LaTeX command is \equiv, and the HTML entity is ⩧.
gcd is called the "Greatest Common Divisor Symbol". It represents the largest positive integer that divides two or more numbers without a remainder. Its LaTeX command is \gcd, and the HTML entity is gcd.
lcm is called the "Least Common Multiple Symbol". It represents the smallest positive integer that is divisible by two or more numbers. Its LaTeX command is \operatorname{lcm}, and the HTML entity is lcm.
mod is called the "Modulo Symbol". It represents the remainder operation (a mod b is the remainder when a is divided by b). Its LaTeX command is \bmod for binary use or \pmod for parenthetical notation, and the HTML entity is mod.
sgn is called the "Sign Function Symbol". It returns 1 for positive numbers, -1 for negative numbers, and 0 for zero. Its LaTeX command is \operatorname{sgn}, and the HTML entity is sgn.
abs is called the "Absolute Value Symbol". It represents the non-negative value of a number regardless of its sign. Its LaTeX command is \lvert x \rvert or |x|, and the HTML entity is abs.
📌 Usage Notes and Tips
1. Minus Sign vs. Hyphen — Always use the proper minus sign (U+2212) for mathematical typesetting rather than the hyphen (-) to ensure correct visual appearance and spacing.
2. Multiplication Symbol — In formal mathematics, use × (\times) or · (\cdot) rather than the asterisk (*), which is primarily used in programming contexts.
3. Percent in LaTeX — The percent sign requires escaping as \% in LaTeX to prevent comment interpretation.
4. Large Operators — Summation ∑ and product ∏ symbols automatically adjust size in LaTeX based on display mode. Use \limits to control subscript/superscript placement.
5. Function Names — Function names like gcd, lcm, sgn should be set in upright roman type. LaTeX provides \gcd and \operatorname{} for custom functions.
6. Roots with Indices — For cube roots and higher, use \sqrt[n]{x} where n is the root index.
7. Click Any Symbol — Click any symbol card to view its detailed information. Copy Unicode values, LaTeX commands, and HTML entities with a single click. Export SVG vector code or download 512×512 transparent PNG images for use in documents, presentations, and web development.