Results update instantly as you type.
Kelvin Converter
Scientists and engineers rarely think in Celsius or Fahrenheit alone. Kelvin is the base temperature unit of the SI system. Converting into or out of it correctly matters for lab work, physics homework, and engineering specs. A single misplaced decimal in the 273.15 offset can throw off an entire calculation. A dedicated Kelvin converter prevents exactly that.
This tool converts between Celsius, Fahrenheit, and Kelvin in every direction, in real time. Enter a value, pick your input and output units, and get an exact result with no rounding surprises. Every formula below is shown in full so you can verify the math yourself or apply it without the tool.
- Input20°C
- Formula usedK = °C + 273.15
Convert Celsius to Kelvin
To convert Celsius to Kelvin, add 273.15 to the Celsius value. The formula is K = °C + 273.15. It works because zero on the Kelvin scale means absolute zero, not the freezing point of water.
Unlike Celsius to Fahrenheit, this conversion has no multiplication step. Room temperature at 20°C becomes 293.15 K, and the boiling point of water at 100°C becomes 373.15 K. The offset stays constant across the entire scale.
Convert Kelvin to Celsius
To convert Kelvin to Celsius, subtract 273.15 from the Kelvin value. The formula is °C = K − 273.15, which simply reverses the offset used going the other direction.
Kelvin values are always positive since the scale starts at absolute zero, so the result can still land below zero. A reading of 250 K converts to -23.15°C, which is well below freezing despite the Kelvin figure looking unremarkable.
Convert Kelvin to Fahrenheit
To convert Kelvin to Fahrenheit, subtract 273.15 to get Celsius, then multiply by 9/5 and add 32. The formula is °F = (K − 273.15) × 9/5 + 32.
This is a two-step conversion in practice, since Fahrenheit and Kelvin do not share a direct offset the way Celsius and Kelvin do. Liquid nitrogen boils at 77 K, which works out to -320.47°F once both steps are applied.
Convert Fahrenheit to Kelvin
To convert Fahrenheit to Kelvin, subtract 32, multiply by 5/9, then add 273.15. The formula is K = (°F − 32) × 5/9 + 273.15.
A typical room at 68°F converts to roughly 293.15 K, matching the earlier example at 20°C. Checking a result against its Celsius equivalent is a fast way to confirm your math.
Worked Examples
Formulas are easier to trust once you see them applied to real reference points. The five examples below cover the values people actually look up, from everyday room temperature to physics-textbook extremes.
- Room temperature: 20°C converts to 293.15 K and 68°F.
- Boiling water: 100°C converts to 373.15 K and 212°F.
- Human body temperature: 37°C converts to 310.15 K and 98.6°F.
- Liquid nitrogen boiling point: 77 K converts to -196.15°C and -321.07°F.
- Absolute zero: 0 K converts to -273.15°C and -459.67°F, the coldest temperature physically possible.
Each of these checks out against the formulas above, so you can use them to sanity-check your own calculations before trusting a result.
Code Snippet for Kelvin Conversions
Developers who need Kelvin conversions in their own project can use the functions below instead of re-deriving the formulas. All four directions are covered, and the logic matches exactly what powers the calculator on this page.
function celsiusToKelvin(celsius) {
return celsius + 273.15;
}
function kelvinToCelsius(kelvin) {
return kelvin - 273.15;
}
function kelvinToFahrenheit(kelvin) {
return (kelvin - 273.15) * 9 / 5 + 32;
}
function fahrenheitToKelvin(fahrenheit) {
return (fahrenheit - 32) * 5 / 9 + 273.15;
}Copy the block above directly into a JavaScript project. No dependencies are required, and the same four formulas apply regardless of language since they are pure arithmetic.
Is This Tool Safe to Use?
This Kelvin converter runs entirely in your browser using client-side JavaScript. The values you enter are 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, because no network request is involved in producing a result.
Common Kelvin Conversion Mistakes
These are the most frequent errors people make with Kelvin conversions, along with the fix for each.
Mistake | Why It Happens | Correct Approach |
|---|---|---|
| Rounding 273.15 to 273 | Feels close enough for casual use | Keep the full decimal for scientific accuracy |
| Writing "degrees Kelvin" or "°K" | Habit carried over from Celsius and Fahrenheit | Kelvin has no degree symbol; write it as K |
| Assuming a direct Fahrenheit-Kelvin offset | Celsius and Kelvin share a simple offset, so people expect the same | This pair always requires the full two-step formula |
| Getting a negative Kelvin result | Sign error when subtracting 273.15 | Kelvin cannot go below zero; recheck the direction of the formula |
Celsius, Fahrenheit & Kelvin Comparison Chart
The table below lines up common reference points across all three scales for quick lookup.
Celsius (°C) | Fahrenheit (°F) | Kelvin (K) | Reference Point |
|---|---|---|---|
| -273.15 | -459.67 | 0 | Absolute zero |
| -196.15 | -321.07 | 77 | Liquid nitrogen boils |
| -18 | 0 | 255.15 | Freezer temperature |
| 0 | 32 | 273.15 | Water freezes |
| 20 | 68 | 293.15 | Room temperature |
| 37 | 98.6 | 310.15 | Human body temperature |
| 100 | 212 | 373.15 | Water boils |
Frequently Asked Questions
Frequently Asked Questions