Blog / Compare
÷ vs ∕
When to use which
| Character | When to use it | Watch out for |
|---|---|---|
| ÷ Division Sign | Early schooling, calculator keys, and captions written for an audience that expects the familiar symbol. | ISO 80000-2 recommends against it. Expressions like 6 ÷ 2(1+3) are genuinely ambiguous about where the division stops, which is the engine behind those viral arithmetic arguments. |
| ∕ Division Slash | Typeset notation where the character itself has to carry the meaning divide, and nothing else. | Visually identical to the ASCII slash in most fonts, and Unicode lists exactly that pairing as confusable. Validate input against both or against neither. |
The older of these two marks spent centuries doing work that has nothing to do with arithmetic. The obelus — a horizontal stroke, often flanked by dots — was an editorial mark used by scholars such as Aristarchus of Samothrace to flag a line of text they judged spurious or corrupt. It meant this passage is doubtful, closer in spirit to a proofreader's note than to an operator, and its arithmetic career only began in 1659, when the Swiss mathematician Johann Rahn used it for division in Teutsche Algebra.
The division sign is now the mark that serious mathematics has quietly retired. ISO 80000-2, the international standard for mathematical notation, recommends against it, and the reason is the one everybody has argued about online without realising they were arguing about a standard: 6 ÷ 2(1+3) has no single correct reading, because the obelus gives no indication of where the division stops. Professionals write a stacked fraction or a slash instead. The sign survives where it is most useful and least likely to be handed a complicated expression — calculator keys, primary-school arithmetic, a worksheet explaining what division is. The dots above and below the bar are commonly read as standing in for a numerator and a denominator, which is a tidy mnemonic and probably the reason the shape has outlived the endorsement.
The division slash is what the code chart calls the generic division operator: a slash whose only job is arithmetic. That is its entire claim, and it is enough. Where the obelus is silent about scope, a slash inherits the ordinary left-to-right reading of the expression around it; and where the ASCII slash is general-purpose punctuation doing dates, URLs and and/or, this character has no second life to be confused with.
There is a third slash worth knowing about even though it rarely earns a page of its own. The fraction slash at U+2044 is less a character than an instruction to the renderer: lift what precedes it into a numerator, drop what follows into a denominator, draw a real fraction. So choosing among the three is really a question about how much you are willing to let software infer — nothing at all in the case of the division slash, and a good deal in the case of the fraction slash.
The warning worth carrying away is not typographic. The division slash and the ASCII solidus are indistinguishable in most fonts, and Unicode's own confusables data lists precisely that pairing. The resemblance gets exploited deliberately: a division slash inside a filename sails past anything looking for a path separator, and in a link or a domain name it can make a URL appear to point somewhere it does not. If your validation matches U+002F and assumes it has caught every slash, that is a bug waiting rather than a matter of style.
For most writing the honest answer is that you need neither character. Prose says divided by or sets a fraction, code uses the ASCII slash and always will, and a spreadsheet does not care what a cell looks like as long as the formula parses. Reach for ÷ when the reader expects the schoolroom symbol. Reach for ∕ when notation has to be unambiguous on the page and the meaning must live in the character rather than in the layout. HTML has ÷ for the first and ∕ for the second, which is a fair measure of how differently often the two are actually wanted.