Celsius to Fahrenheit Converter
Last updated: 6 August 2026
Reviewed by Gavin Meiring, Lead research and primary author · Doctoral Candidate (Corporate Governance) · Research and drafting assisted by AI
Celsius to Fahrenheit Converter
The Celsius to Fahrenheit converter translates any temperature between the two most-used temperature scales in everyday life. Enter a value in either Celsius to Fahrenheit Converter field and the other updates instantly. The conversion is exact, the formulas are defined by international standards bodies and contain no rounding beyond the displayed precision.
How to Use the Celsius to Fahrenheit Converter
- Type a number into the Celsius (°C) field to see the Fahrenheit equivalent on the right.
- Type a number into the Fahrenheit (°F) field to see the Celsius equivalent on the left.
- The two Celsius to Fahrenheit Converter fields stay in sync as you type; editing one updates the other automatically. Use the quick presets for common reference points (water freezing, body temperature, oven baking) to load an exact pair of values instantly.
- Read the result box to see the active formula and a side-by-side display of the current value in both scales.
The Conversion Formulas
The conversion between Celsius and Fahrenheit uses two constants: the 9/5 scaling factor (one Celsius degree is 1.8 Fahrenheit degrees) and the 32-degree offset (the two scales have different zero points). Formally:
Celsius to Fahrenheit: °F = °C × 9/5 + 32
Fahrenheit to Celsius: °C = (°F − 32) × 5/9
| Reference point | °C | °F |
|---|---|---|
| Equal point (scales agree) | −40 | −40 |
| Water freezes (at 1 atm) | 0 | 32 |
| Room temperature (comfortable) | 20 to 22 | 68 to 72 |
| Body temperature (typical) | 37 | 98.6 |
| Water boils (at 1 atm) | 100 | 212 |
| Oven baking (conventional) | 180 | 356 |
| Oven baking (fan-assisted) | 160 | 320 |
| Medium-rare steak (doneness) | 55 | 131 |
Why the offset? A 1-degree Celsius change equals a 1.8-degree Fahrenheit change, but the two scales have different zero points. Fahrenheit's zero was set at the temperature of a brine mixture of ice, water, and ammonium chloride (around −17.8 °C in modern terms). Celsius's zero was set at water's freezing point. So 0 °C = 32 °F, and the +32 in the formula shifts Fahrenheit's zero to Celsius's zero before applying the scaling factor.
Why the 9/5 ratio? On the original scales, water freezes at 32 °F and boils at 212 °F, a 180-degree span. Water freezes at 0 °C and boils at 100 °C, a 100-degree span. The ratio of the two spans is 180/100 = 9/5 = 1.8. One Celsius degree is therefore 1.8 Fahrenheit degrees, regardless of which range you measure.
Worked Examples
Example 1, Room temperature. A thermostat reads 22 °C. What is that in Fahrenheit? °F = 22 × 9/5 + 32 = 22 × 1.8 + 32 = 39.6 + 32 = 71.6 °F. So 22 °C ≈ 72 °F, which matches the typical "comfortable indoor" range on an American thermostat.
Example 2, A child's fever. A thermometer reads 38.5 °C. What is that in Fahrenheit? °F = 38.5 × 9/5 + 32 = 38.5 × 1.8 + 32 = 69.3 + 32 = 101.3 °F. A reading above 100.4 °F (38 °C) is generally considered a fever in adults; the same threshold in Celsius is 38 °C.
Example 3, A European recipe at 200 °C. An Italian cake recipe calls for 200 °C. What Fahrenheit oven setting is that? °F = 200 × 9/5 + 32 = 200 × 1.8 + 32 = 360 + 32 = 392 °F. So 200 °C ≈ 392 °F. When in doubt, 180 °C ≈ 356 °F is a safer "moderate oven" approximation.
Example 4, Going the other way. A weather forecast says 95 °F. What is that in Celsius? °C = (95 − 32) × 5/9 = 63 × 5/9 = 315/9 = 35 °C. So 95 °F = 35 °C, a hot summer day.
Example 5, The equal point. Verify that −40 is the same in both scales. °F = −40 × 9/5 + 32 = −72 + 32 = −40 °F. °C = (−40 − 32) × 5/9 = −72 × 5/9 = −40 °C. The only temperature where Celsius and Fahrenheit give the identical reading is −40. This is a useful sanity check when debugging conversion code.
Where the Conversion Shows Up
- Weather and travel: International travellers converting between metric and imperial weather forecasts.
- Cooking and baking: Adapting oven temperatures between European (°C) and American (°F) recipes.
- Healthcare: Reading body temperature on thermometers that may display either scale; clinical thresholds are often quoted in both.
- HVAC and refrigeration: Servicing equipment rated in different national conventions; refrigerant pressures are usually in °F for legacy US gear and °C for modern international gear.
- Science and laboratory work: American papers and patents still use Fahrenheit in some industrial contexts, while the SI standard is Kelvin or Celsius.
- Education: Teaching the difference between relative scales (with arbitrary zeros) and absolute scales (with physically meaningful zeros like Kelvin).
- Engineering and industry: Some industries (notably petroleum and certain US manufacturing sectors) still publish specifications in °F.
Common Mistakes
- Forgetting the 32. A frequent error is to compute °C × 9/5 and call that the Fahrenheit value, dropping the +32 offset. The result will be off by 32 degrees Fahrenheit (about 18 °C), which is huge. Always include the offset.
- Forgetting the parentheses around the subtraction. When going °F → °C, the formula is (°F − 32) × 5/9, not °F − 32 × 5/9. Without the parentheses, the order of operations gives °F − 17.78, not the correct value.
- Converting twice. A chained error pattern: convert °C → °F with one formula, then convert that °F → °C with a second formula and check against the original. If both formulas are right, you get the original back; if one is wrong, you get a different number and may misdiagnose the bug.
- Mixing up the scales on a thermometer. Some digital thermometers have a small switch or button that toggles °C and °F. If the display seems "off by a lot," check the scale setting before assuming the reading is wrong.
- Confusing fan-assisted and conventional oven conversions. A 180 °C conventional oven ≈ 356 °F. A 160 °C fan-assisted oven (which runs ~20 °C hotter at the same setting) ≈ 320 °F. Recipes from different countries assume different conventions; a 180 °C European "moderate oven" may run at 200 °C in a US conventional oven.
- Rounding too early. If a calculation involves a chain of conversions, round only at the end. Rounding 38.5 °C to 39 °C and then converting to Fahrenheit gives 102.2 °F, but converting 38.5 directly gives 101.3 °F, a real difference in a medical context.
Quick Mental Conversion Trick
For an approximate °C → °F conversion in your head: double the Celsius and add 30. For example, 20 °C → 2×20 + 30 = 70 °F (actual: 68 °F, close enough). 25 °C → 80 °F (actual: 77 °F). This trick is accurate to within a couple of degrees for everyday room-temperature readings.
For an approximate °F → °C conversion: subtract 30, then halve. 70 °F → (70−30)/2 = 20 °C (actual: 21.1 °C). 80 °F → (80−30)/2 = 25 °C (actual: 26.7 °C). Again, close enough for casual use.
These tricks come from rewriting the exact formula: the 9/5 ≈ 2 scaling and the 32 offset ≈ 30. The trick is most accurate around room temperature and less accurate at extreme cold or extreme heat, where the 2-point difference between 30 and 32 (and between 1.8 and 2) becomes a larger percentage of the answer.
When to Use a Different Scale
Celsius is the SI standard for temperature and is used in science, medicine, and most countries' everyday life. Fahrenheit is used primarily in the United States (and a few other countries like the Bahamas, Belize, and the Cayman Islands) for weather, cooking, and body temperature. Kelvin is used in scientific contexts where absolute temperature matters (gas laws, thermodynamics, blackbody radiation). Rankine is the absolute-temperature counterpart of Fahrenheit, used in some US engineering contexts. If you need to convert to or from Kelvin, use the formulas: K = °C + 273.15 and K = °F × 5/9 + 255.37.
Frequently Asked Questions
Q: What is the formula to convert Celsius to Fahrenheit? A: Use °F = °C × 9/5 + 32. Multiply the Celsius value by 1.8, then add 32. For example, 25 °C × 1.8 = 45, plus 32 = 77 °F. The 9/5 (or 1.8) accounts for the different size of a degree on the two scales, and the +32 accounts for the different zero points.
Q: What is the formula to convert Fahrenheit to Celsius? A: Use °C = (°F − 32) × 5/9. Subtract 32 from the Fahrenheit value, then multiply by 5/9 (or divide by 1.8). For example, 98.6 °F − 32 = 66.6, multiplied by 5/9 = 37 °C. The parentheses matter, without them, the order of operations would subtract 32 × 5/9 instead of subtracting 32 first.
Q: Is there a temperature where Celsius and Fahrenheit are equal? A: Yes, exactly −40. The two scales cross at this point. Above −40, Fahrenheit reads higher; below −40, Celsius reads higher. This is a useful sanity check when writing or debugging conversion code: the formula should give the same value when computed in either direction starting from −40.
Q: Why is body temperature 37 °C and 98.6 °F? A: Normal human body temperature is about 37 °C (or 98.6 °F). The 98.6 °F figure comes from an 1851 measurement by Carl Wunderlich, who surveyed thousands of patients and found a population average near that value. Modern measurements using more accurate thermometers give a range of 36.1 to 37.2 °C (97 to 99 °F), with diurnal variation through the day. Body temperature varies by measurement site, time of day, and individual.
Q: At what temperature does water boil? A: Pure water boils at 100 °C (212 °F) at standard atmospheric pressure (1 atm = 101.325 kPa = 760 mmHg). At higher altitudes, atmospheric pressure is lower and water boils at a lower temperature, about 95 °C at 1,500 m elevation, or 90 °C at 3,000 m. The Celsius scale was originally designed so that water's freezing and boiling points are 0 and 100 at standard pressure.
q: can the Celsius to Fahrenheit Converter be used for professional or commercial purposes? A: Yes, the Celsius to Fahrenheit Converter The Celsius to Fahrenheit Converter provides mathematically correct results that are suitable for professional, commercial, and educational use. The formulas used are well-established and validated against reference standards (NIST, BIPM).
How often are the Celsius to Fahrenheit Converter formulas updated? A: The formulas are based on the standard definitions of the Celsius and Fahrenheit scales and rarely require updates. The 9/5 ratio and the 32-degree offset have been stable since the scales were defined. Modern precision refinements relate to how the scales are realised in laboratory settings (triple points, fixed points), not to the everyday conversion formula.
References
- NIST Special Publication 811: Guide for the Use of the SI Units, defines the SI temperature scale and the relationship between Kelvin, Celsius, and Fahrenheit.
- BIPM SI Brochure (9th edition, 2019), the formal definition of the kelvin and its relationship to Celsius.
- International Temperature Scale of 1990 (ITS-90), the practical realisation of temperature scales for laboratory and industrial use.
- Carl Wunderlich, Das Verhalten der Eigenwärme in Krankheiten (1851), the original large-scale study of human body temperature.
- The International Bureau of Weights and Measures (BIPM), historical and current definitions of the temperature scales.