DEV Community

Cover image for Kelvin to Celsius: Formula, Examples, and Quick Conversion Guide
UnitMorph
UnitMorph

Posted on

Kelvin to Celsius: Formula, Examples, and Quick Conversion Guide

If you've ever seen a temperature written as 300 K and needed to understand it in Celsius, the conversion is easier than it may first appear.

Kelvin and Celsius are closely related temperature scales. In fact, their degree intervals are the same size. The main difference is their starting point.

Kelvin is the SI base unit for thermodynamic temperature and is widely used in science and engineering. Celsius is more common for everyday temperature measurements.

In this guide, we'll look at the kelvin to celsius formula, work through the calculation, review common values, and explain where this conversion is useful.

The Kelvin to Celsius Formula

The conversion formula is:

°C = K − 273.15

Where:

  • K is the temperature in Kelvin
  • °C is the temperature in Celsius
  • 273.15 is the offset between the two scales

For example, to convert 300 K:

300 - 273.15 = 26.85
Enter fullscreen mode Exit fullscreen mode

Therefore:

300 K = 26.85 °C

If you're working with several values and don't want to perform the calculation manually, you can use the Kelvin to Celsius Converter from UnitMorph.

Why Do We Subtract 273.15?

The reason is the different zero points of the two scales.

On the Kelvin scale, 0 K represents absolute zero. On the Celsius scale, the same temperature is −273.15 °C.

This gives us the relationship:

0 K = -273.15 °C
Enter fullscreen mode Exit fullscreen mode

And:

273.15 K = 0 °C
Enter fullscreen mode Exit fullscreen mode

Because the size of one Kelvin is the same as the size of one Celsius degree, there is no multiplication or division involved.

You simply subtract the fixed offset.

Kelvin vs. Celsius

Here's a quick comparison:

Property Kelvin Celsius
Symbol K °C
Type Absolute temperature scale Relative temperature scale
Zero point Absolute zero 0 °C reference
Common use Science and engineering Everyday and scientific use
Degree symbol No Yes

One notation detail is worth remembering: Kelvin is written as K, not °K.

So 300 K is correct, while 300 °K is not the standard notation.

Quick Kelvin to Celsius Conversion Table

Kelvin Celsius
0 K −273.15 °C
100 K −173.15 °C
200 K −73.15 °C
250 K −23.15 °C
273.15 K 0 °C
280 K 6.85 °C
290 K 16.85 °C
300 K 26.85 °C
310 K 36.85 °C
350 K 76.85 °C
373.15 K 100 °C

These values are calculated directly using:

°C = K − 273.15

How to Convert K to C Manually

You can convert any Kelvin value with three simple steps.

1. Start with the Kelvin value

For example:

320 K
Enter fullscreen mode Exit fullscreen mode

2. Subtract 273.15

320 - 273.15 = 46.85
Enter fullscreen mode Exit fullscreen mode

3. Add the Celsius unit

320 K = 46.85 °C
Enter fullscreen mode Exit fullscreen mode

The same process works with decimal Kelvin values.

A Note About Temperature Differences

There is an important distinction between a temperature value and a temperature difference.

A change of 1 K has exactly the same magnitude as a change of 1 °C.

For example, if a temperature increases by 10 K, the temperature has also increased by 10 °C in terms of the size of the change.

However, 10 K is not equal to 10 °C as an actual temperature value.

Using the conversion formula:

10 K = -263.15 °C
Enter fullscreen mode Exit fullscreen mode

This distinction is particularly important in scientific and engineering calculations.

Where Is Kelvin to Celsius Conversion Used?

Physics

Kelvin is frequently used in thermodynamics and other areas of physics where absolute temperature is required.

Chemistry

Temperature values in scientific equations and laboratory work may be expressed in Kelvin, while results may be communicated in Celsius.

Engineering

Engineers encounter Kelvin in areas such as thermodynamics, heat transfer, and gas-related calculations.

Manufacturing

Industrial equipment and technical documentation may use either Kelvin or Celsius depending on the process and specification.

Education

Students often need to convert between Kelvin and Celsius when solving physics and chemistry problems.

Common Mistakes

Using 273 Instead of 273.15

For an approximate calculation, you may see 273 used. However, the standard conversion uses 273.15.

Adding Instead of Subtracting

Remember the direction:

Kelvin → Celsius
subtract 273.15
Enter fullscreen mode Exit fullscreen mode

For the reverse conversion:

Celsius → Kelvin
add 273.15
Enter fullscreen mode Exit fullscreen mode

Writing °K

Kelvin does not use a degree symbol.

Use:

300 K
Enter fullscreen mode Exit fullscreen mode

rather than:

300 °K
Enter fullscreen mode Exit fullscreen mode

Rounding Too Early

If you're working on a scientific or engineering calculation, keep the decimal places until the final result and then round appropriately.

Kelvin to Celsius in Code

If you're implementing this conversion in a program, the logic is extremely simple.

For example, in JavaScript:

function kelvinToCelsius(kelvin) {
  return kelvin - 273.15;
}

console.log(kelvinToCelsius(300));
// 26.85
Enter fullscreen mode Exit fullscreen mode

The same mathematical relationship can be implemented in virtually any programming language.

It's also a good idea to validate the input when building a real application. Kelvin temperatures cannot be below absolute zero, so an input less than 0 K should generally be rejected as physically invalid.

Online Kelvin to Celsius Conversion

Manual calculations are useful when you're learning the formula, but an online converter can save time when you're dealing with many values.

The UnitMorph Kelvin to Celsius Converter provides a simple way to perform the calculation directly in your browser.

UnitMorph also provides a broader collection of online unit converters for different measurement categories.

Final Takeaway

The Kelvin-to-Celsius conversion comes down to one simple equation:

°C = K - 273.15
Enter fullscreen mode Exit fullscreen mode

That's the key relationship to remember.

For example:

273.15 K = 0 °C
300 K = 26.85 °C
373.15 K = 100 °C
Enter fullscreen mode Exit fullscreen mode

Kelvin and Celsius have equal-sized temperature intervals, but their zero points are separated by 273.15 units. Once that concept is clear, converting between the two scales is straightforward.

Whether you're studying physics, working on an engineering calculation, writing software, or simply trying to understand a scientific temperature, the same formula applies.

Top comments (0)