Temperature Conversions
Static methods for converting between temperature units — Celsius, Fahrenheit, and Kelvin.
celsiusToFahrenheit()
Formula: (c * 9/5) + 32
playground.ts
fahrenheitToCelsius()
Formula: (f - 32) * 5/9
playground.ts
celsiusToKelvin()
Formula: c + 273.15
playground.ts
kelvinToCelsius()
Formula: k - 273.15
playground.ts
fahrenheitToKelvin()
Formula: ((f - 32) * 5/9) + 273.15
playground.ts
kelvinToFahrenheit()
Formula: ((k - 273.15) * 9/5) + 32
playground.ts
Last updated: Sun, Jun 14, 2026 07:06:16AM (UTC)
