Audited ·Last updated 27 Jul 2026·2 citations·Tier 3·0 uses

Celsius to Fahrenheit Calculator

Convert Celsius to Fahrenheit with the exact formula °F = °C × 9/5 + 32. Includes Kelvin, an oven-temperature example, and the −40° coincidence.

Celsius to Fahrenheit Calculator

The Celsius reading you want converted — an oven dial, a recipe, a thermometer, or a weather forecast. Negative values are allowed (a home freezer runs around −18 °C); only readings below absolute zero (−273.15 °C) are rejected.
°C
Temperature in Fahrenheit
356
The exact Fahrenheit equivalent, computed as °C × 9/5 + 32.
Temperature in Kelvin
453.15K

Background.

A British baking cookbook lists the oven temperature for a Victoria sponge as 180°C, but the dial on a US kitchen range only speaks Fahrenheit. This celsius to fahrenheit calculator exists for exactly that moment: enter the Celsius figure printed on the overseas recipe, packaging, or thermometer, and get the Fahrenheit reading your oven actually understands — plus the Kelvin equivalent for anyone working from a scientific or engineering reference.

The conversion is exact by definition, not a rounded approximation. The Fahrenheit scale is related to Celsius by the affine formula °F = °C × 9⁄5 + 32, fixed because the Celsius degree and the kelvin are defined to be identical in size, offset only by the 273.15 K gap between absolute zero and the freezing point of water (NIST Special Publication 811, Appendix B; BIPM SI Brochure, 9th edition). Plugging in 180°C gives exactly 356°F — not 355.9, not 356.1.

Unlike converting a length or a mass, temperature conversion is not a simple multiplication: it carries both a scale factor (9/5) and an offset (+32), so 0°C is not 0°F. The calculator below walks through why that matters, shows the worked oven-temperature example end to end, and covers the one temperature — minus 40 — where the two scales happen to agree.

What is celsius to fahrenheit calculator?

The Celsius and Fahrenheit scales are two different ways of numbering the same physical quantity — thermal energy — using different zero points and different degree sizes. Celsius sets 0° at the freezing point of water and 100° at its boiling point at standard atmospheric pressure. Fahrenheit, defined by Daniel Gabriel Fahrenheit in 1724, sets 32° at water's freezing point and 212° at its boiling point, which means a Fahrenheit degree is 5/9 the size of a Celsius degree. Because the two scales have different zero points, converting between them requires both multiplying by a scale factor and adding an offset — the relationship is affine, not linear through the origin, which is why a Celsius-to-Fahrenheit calculator cannot reuse the same 'value × factor' shape that a length or weight converter uses. This calculator also reports the Kelvin equivalent, since Kelvin is the SI base unit for thermodynamic temperature and is anchored to Celsius by a pure offset (K = °C + 273.15) with no scale change at all — one kelvin is exactly one Celsius degree in size.

How to use this calculator.

  1. Enter the Celsius temperature you want to convert — from a recipe, an oven dial, a thermometer, or a weather report.
  2. Read the Fahrenheit result, computed exactly as °C × 9⁄5 + 32.
  3. Check the Kelvin value if you need it for a scientific or engineering context.
  4. Remember that negative Celsius readings are valid and will convert correctly; only inputs below absolute zero (−273.15 °C) are rejected.

The formula.

°F = °C × 9⁄5 + 32

The formula °F = °C × 9⁄5 + 32 has two parts, and both are needed because Celsius and Fahrenheit disagree on both the size of a degree and the location of zero. The scale factor 9⁄5 (equivalently 1.8) exists because 100 Celsius degrees span the same temperature range as 180 Fahrenheit degrees (freezing to boiling), so 180⁄100 reduces to 9⁄5. The offset +32 exists because 0°C — water's freezing point — lands at 32°F, not 0°F.

For the worked example of 180°C: multiply by 9, giving 1620; divide by 5, giving 324; add 32, giving 356. So 180°C converts to exactly 356°F. The Kelvin value uses a simpler pure-offset relation, K = °C + 273.15, because the kelvin and the Celsius degree are defined to be exactly the same size — only the zero point differs, with 0 K (absolute zero, the coldest physically possible temperature) equal to −273.15°C. For 180°C that gives 453.15 K.

This calculator computes both results with Decimal.js arbitrary-precision arithmetic rather than native floating-point math, and rounds only once at the very end, so the exact affine relationship is preserved to ten decimal places rather than accumulating binary floating-point drift.

A worked example.

Example

A home baker in the US is following a British recipe that calls for an oven temperature of 180°C. Their oven dial is marked in Fahrenheit, so they enter 180 into the calculator. Using °F = °C × 9⁄5 + 32: 180 × 9 = 1620, divided by 5 gives 324, plus 32 gives 356. The calculator returns 356°F — the exact setting to dial in — along with the Kelvin equivalent of 453.15 K for reference. No rounding was needed anywhere in the calculation because 180°C converts to a whole-number Fahrenheit value.

celsius180

Frequently asked questions.

Why is there one temperature where Celsius and Fahrenheit show the same number?
Because the two scales cross at exactly −40 degrees. Setting °F = °C in the formula °F = °C × 9⁄5 + 32 and solving algebraically gives °C = −40. At that single point, and only that point, a Celsius reading and a Fahrenheit reading are numerically identical: −40°C equals −40°F. Every other temperature reads differently on the two scales because of the combination of the 9⁄5 scale factor and the +32 offset. This coincidence is a popular sanity check for temperature-conversion code — including the test suite behind this calculator — because it is easy to verify by hand and catches sign or coefficient errors immediately.
Why can't I just multiply by a single factor like other unit conversions?
Because Celsius and Fahrenheit have different zero points, not just different degree sizes. Converting a length (miles to kilometers) or a mass (pounds to kilograms) is a pure multiplication because zero on one scale is always zero on the other. Temperature is different: 0°C is the freezing point of water, which is 32°F, not 0°F. That mismatch means the conversion needs an additive offset (+32) in addition to the multiplicative scale factor (9⁄5) — mathematicians call this an affine transformation. Any calculator, spreadsheet formula, or piece of code that tries to convert Celsius to Fahrenheit with a bare multiplication will be wrong for every value except absolute zero.
Is 180°C always exactly 356°F, or does it depend on altitude or pressure?
The conversion itself is a fixed mathematical relationship between two temperature scales and does not depend on altitude, air pressure, or location — 180°C is exactly 356°F everywhere in the universe. What does depend on altitude and pressure is the boiling point of water in Celsius or Fahrenheit terms (water boils below 100°C at high altitude), but that is a separate physical phenomenon from the unit conversion. Once you have a temperature reading in Celsius, the Fahrenheit conversion is exact and constant regardless of where the reading was taken.
Why does the calculator also show Kelvin?
Kelvin is the SI base unit for thermodynamic temperature and is the scale scientists and engineers use because it is anchored at absolute zero rather than an arbitrary reference point like water's freezing point. Converting Celsius to Kelvin only requires an offset (K = °C + 273.15) with no scale change, since one kelvin is defined to be exactly the same size as one Celsius degree. Showing Kelvin alongside Fahrenheit costs nothing extra to compute and is genuinely useful for anyone working with gas laws, thermodynamics coursework, or lab equipment calibrated in Kelvin.
Can I convert a negative Celsius temperature, like a freezer setting?
Yes. Negative Celsius values are physically meaningful and fully supported — a typical home freezer runs at about −18°C (which converts to −0.4°F), and record cold-weather readings can go much lower. The calculator only rejects inputs colder than absolute zero, −273.15°C, since nothing can physically be colder than that. This is different from converting a length or a weight, where a negative number is meaningless and gets rejected outright; for temperature, negative readings are common and the calculator is built to handle them correctly.

In this category

Embed

Quanta Pro

Paid features are coming later.

  • All 313 calculators remain free
  • No billing is enabled
Coming soon