Celsius to Fahrenheit Converter

Weather reports, oven dials, and body temperature readings do not all use the same scale. Someone checking a BBC Good Food recipe, a Weather Channel forecast, or a medical thermometer often needs to move between the two. That happens in seconds when the tool is right, not minutes of hand math. Doing that math by hand under pressure is where small errors creep in.

This tool converts any Celsius value to Fahrenheit 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.

Conversion Calculator

Results update instantly as you type.

Celsius Value
20°C equals 68°F.
Runs entirely in your browser — no data leaves your device.
Result
68°F
Input20°C
Formula used°F = (°C × 9/5) + 32

What Is the Celsius to Fahrenheit Formula?

The formula is °F = (°C × 9/5) + 32. Multiply the Celsius value by nine-fifths, then add 32 to the result. Celsius itself is formally defined through the Kelvin, the SI unit maintained by the International Bureau of Weights and Measures (BIPM).

The 9/5 factor exists because Celsius and Fahrenheit divide the same physical range into a different number of degrees. There are 100 degrees between freezing and boiling on the Celsius scale, but 180 degrees on the Fahrenheit scale. That ratio, 180 to 100, simplifies to 9/5.

How to Convert Celsius to Fahrenheit

Take the Celsius value, multiply it by 1.8, then add 32. Using 1.8 instead of the 9/5 fraction gives the identical result and is often faster to calculate by hand.

For example, 25°C multiplied by 1.8 equals 45. Adding 32 to that gives 77°F, which is the correct converted value.

The Quick Mental Math Trick

For a fast approximation without a calculator, double the Celsius value and add 30. This shortcut is close enough for everyday use, though it is not exact.

Applied to 20°C, doubling gives 40, and adding 30 gives 70°F. The precise formula gives 68°F, so the trick is off by only 2 degrees. That margin holds fairly steady across normal outdoor temperatures. It is why the trick works well for weather but not for lab or medical readings.

Worked Examples

These five examples cover the values people look up most often, from everyday weather to cooking and cold-weather extremes.

  • Room temperature: 20°C converts to 68°F.
  • Human body temperature: 37°C converts to 98.6°F.
  • Boiling water: 100°C converts to 212°F.
  • A common baking temperature: 180°C converts to 356°F.
  • A cold winter day: -10°C converts to 14°F.

Each of these follows directly from the formula above and can be used to double-check your own calculations.

Where Celsius and Fahrenheit Are Used Today

Fahrenheit is the everyday scale in the United States, its territories, and a small number of other countries. It appears on weather reports, oven dials, and most home thermostats. Celsius is the standard almost everywhere else, including the entire scientific and medical community worldwide.

This split means the same recipe, weather forecast, or lab reading can arrive in either unit depending on its source. Travelers, cooks following international recipes, and anyone reading foreign news coverage run into this conversion more often than they expect.

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 celsiusToFahrenheit(celsius) {
  return (celsius * 9 / 5) + 32;
}

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
Adding 32 before multiplyingFormula order looks reversible at a glanceMultiply by 9/5 first, then add 32
Using 5/9 instead of 9/5Confusing this formula with the reverse Fahrenheit to Celsius oneThis conversion always uses 9/5, not 5/9
Assuming 100°F equals 40°CBoth numbers look like round, related figures100°F is roughly 37.8°C; 40°C actually converts to 104°F
Relying on the mental trick for precise workThe doubling shortcut is fast but approximateUse the exact formula for medical, scientific, or cooking precision

Comparison Chart: Celsius, Fahrenheit & Common Reference Points

The table below lines up common reference points in both scales for quick lookup.

Celsius (°C)
Fahrenheit (°F)
Reference Point
-40-40Scales intersect
-180Typical freezer setting
032Water freezes
2068Room temperature
3798.6Human body temperature
100212Water boils
180356Common baking temperature

Frequently Asked Questions

Frequently Asked Questions