Results update instantly as you type.
Fahrenheit to Celsius Converter
A Weather Channel forecast, an American oven dial, or a Fahrenheit-labeled thermostat means little to most of the rest of the world. Travelers reading US content and international students following an American recipe run into this constantly. So does anyone outside the US checking a reading from a US-made thermometer. Getting it wrong on a medical reading matters, and getting it wrong on a cooking temperature is not a small mistake either.
This tool converts any Fahrenheit value to Celsius instantly. The exact formula is shown below so you can verify the result or apply it without the calculator. A mental math shortcut, worked examples, and a full reference chart are included further down the page.
- Input68°F
- Formula used°C = (°F − 32) × 5/9
What Is the Fahrenheit to Celsius Formula?
The formula is °C = (°F - 32) × 5/9. Subtract 32 from the Fahrenheit value first, then multiply the result by five-ninths. Celsius itself is formally defined through the Kelvin, the SI unit maintained by the International Bureau of Weights and Measures (BIPM).
The order matters here more than in the reverse direction. Subtracting 32 before multiplying accounts for the offset between where each scale starts counting. Multiplying by 5/9 then rescales that difference into Celsius degrees.
How to Convert Fahrenheit to Celsius
Take the Fahrenheit value, subtract 32, then divide by 1.8. Dividing by 1.8 gives the same result as multiplying by 5/9 and is often easier to do by hand.
For example, 77°F minus 32 equals 45. Dividing 45 by 1.8 gives 25°C, which is the correct converted value.
The Quick Mental Math Trick
For a fast approximation without a calculator, subtract 30 from the Fahrenheit value and divide by two. This shortcut is close enough for everyday use, though it is not exact.
Applied to 70°F, subtracting 30 gives 40, and dividing by two gives 20°C. The precise formula gives 21.1°C, so the trick is off by about one degree. That margin is small enough for weather and travel planning, though not for medical or lab readings.
Worked Examples
These five examples cover the values people look up most often, from freezing and body temperature to summer heat and baking.
- Freezing point: 32°F converts to 0°C.
- Room temperature: 68°F converts to 20°C.
- Human body temperature: 98.6°F converts to 37°C.
- A hot summer day: 100°F converts to 37.8°C.
- Boiling water: 212°F converts to 100°C.
Each of these follows directly from the formula above and can be used to double-check your own calculations.
Why This Conversion Comes Up So Often
Fahrenheit-labeled content is unavoidable for anyone reading US weather sites, US recipes, or US appliance manuals, even outside the United States. A European following an Allrecipes baking post might hit a Fahrenheit number with no Celsius equivalent in sight. So might a traveler checking a New York weather forecast.
The reverse also happens constantly inside the US itself. Imported thermometers, scientific instruments, and medical devices frequently report in Celsius by default. That leaves someone with a Fahrenheit-only frame of reference to work out what the number actually means.
Code Snippet for the Conversion
Developers who need this conversion in their own project can use the function below instead of re-deriving the formula. It matches exactly what powers the calculator on this page.
function fahrenheitToCelsius(fahrenheit) {
return (fahrenheit - 32) * 5 / 9;
}Copy the snippet directly into a JavaScript project. No dependencies are required, and the same formula applies in any programming language.
Is This Converter Safe to Use?
This converter runs entirely in your browser using client-side JavaScript. The value you enter is never transmitted to our servers or stored anywhere outside your current session.
You can confirm this yourself by disconnecting your internet connection after the page loads. The tool keeps working normally, since no network request is involved in producing a result.
Common Conversion Mistakes
These are the most frequent errors people make with this conversion, along with the fix for each.
Mistake | Why It Happens | Correct Approach |
|---|---|---|
| Multiplying before subtracting 32 | Formula order looks reversible at a glance | Subtract 32 first, then multiply by 5/9 |
| Using 9/5 instead of 5/9 | Confusing this formula with the reverse Celsius to Fahrenheit one | This conversion always uses 5/9, not 9/5 |
| Treating the mental trick as exact | The subtract-30-and-halve shortcut is fast but approximate | Use the exact formula for medical, scientific, or cooking precision |
| Forgetting the 32 offset entirely | Dividing the raw Fahrenheit value by 1.8 without subtracting first | Always subtract 32 before dividing or multiplying |
Comparison Chart: Fahrenheit, Celsius & Common Reference Points
The table below lines up common reference points in both scales for quick lookup.
Fahrenheit (°F) | Celsius (°C) | Reference Point |
|---|---|---|
| 0 | -17.8 | A very cold winter day |
| 32 | 0 | Water freezes |
| 68 | 20 | Room temperature |
| 98.6 | 37 | Human body temperature |
| 100 | 37.8 | A hot summer day |
| 212 | 100 | Water boils |
| 350 | 176.7 | Common baking temperature |
Frequently Asked Questions
Frequently Asked Questions