← Back to Blog

Division Symbol ÷ Copy & Paste: Obelus, Slash & Keyboard

·7 min read

The division symbol (÷), formally called the obelus, represents the mathematical operation of division. Whether you learned it as "divided by," "over," or "the quotient of," this symbol is fundamental in arithmetic. Every variation is below, ready to copy.

All Division Symbols

SymbolNameUnicodeCopy
÷Division Sign (Obelus)U+00F7÷
/Solidus (Forward Slash)U+002F/
Fraction SlashU+2044
Divides (Vertical Bar)U+2223

What Does the Division Symbol Mean?

The obelus (÷) means "divided by." In the expression 12 ÷ 4 = 3, the 12 is the dividend, the 4 is the divisor, and the 3 is the quotient. Division is the inverse operation of multiplication: if 3 × 4 = 12, then 12 ÷ 4 = 3.

Different Ways to Write Division

The History of the Obelus

The ÷ symbol was first used by Swiss mathematician Johann Rahn in his 1659 book "Teutsche Algebra." Before that, division was written as a fraction or using words. The word "obelus" comes from Greek, where it originally referred to a sharpened stick used to mark questionable passages in manuscripts. The dots above and below the line represent the dividend (top) and divisor (bottom), similar to a fraction.

Interestingly, the ÷ symbol is not universally used. In many non-English-speaking countries, the colon (:) is preferred for division. In programming, the forward slash (/) is universal because it exists on all keyboards.

How to Type the Division Symbol

Windows

Mac

Linux

iPhone & Android

LaTeX and HTML Codes

FormatCodeResult
LaTeX\div÷
HTML Entity÷÷
HTML Decimal÷÷
CSS Content\00F7÷

Division in Programming

In programming, division uses the forward slash (/). However, there is an important distinction: integer division vs floating-point division. In Python 3, 10 / 3 returns 3.333 (float division), while 10 // 3 returns 3 (integer division, floor division). In C and Java, 10 / 3 with integers returns 3, and you need to write 10.0 / 3 to get the decimal result.

Division by Zero

Division by zero is undefined in standard arithmetic. The expression a ÷ 0 has no meaning because there is no number that, multiplied by zero, gives a non-zero result. In calculus, dividing by numbers approaching zero produces infinity, but the exact division 1 ÷ 0 is undefined. In programming, it causes an error or returns Infinity/NaN.

Related Symbols