🌤️...

Energy Unit Converter

能量单位转换器

Convertidor de Unidades de Energía

Energieeinheiten-Umrechner

Instantly convert between joules, kilojoules, calories, kWh, eV, BTU, and ft·lb

How to Use

0.000000278
kWh

Understanding Energy Units

了解能量单位

Entendiendo las Unidades de Energía

Verstehen von Energieeinheiten

Energy is the capacity to do work or produce heat. Our converter handles all major energy units used in science, engineering, nutrition, and everyday life. From the SI standard joule to food calories and electricity billing units, you can convert between any of these quickly and accurately.

能量是做功或产生热的能力。我们的转换器支持科学、工程、营养和日常生活中使用的所有主要能量单位。从SI标准焦耳到食物卡路里和电费计量单位,您可以快速准确地转换任意单位。

La energía es la capacidad de realizar trabajo o producir calor. Nuestro convertidor maneja todas las unidades de energía principales utilizadas en ciencia, ingeniería, nutrición y vida cotidiana. Desde el julio estándar SI hasta las calorías de los alimentos y las unidades de facturación de electricidad.

Energie ist die Fähigkeit, Arbeit zu verrichten oder Wärme zu erzeugen. Unser Umrechner verarbeitet alle wichtigen Energieeinheiten in Wissenschaft, Technik, Ernährung und Alltag. Vom SI-Standard Joule bis zu Nahrungskalorien und Stromabrechnungseinheiten.

Unit 单位 Unidad Einheit Equivalent in Joules 等效焦耳数 Equivalente en Julios Äquivalent in Joule
J (Joule)1 J
kJ (Kilojoule)1,000 J
cal (Calorie)4.184 J
kcal (Kilocalorie)4,184 J
Wh (Watt-hour)3,600 J
kWh (Kilowatt-hour)3,600,000 J
eV (Electronvolt)1.602 × 10⁻¹⁹ J
BTU1,055.06 J
ft·lb (Foot-pound)1.355818 J

Frequently Asked Questions

常见问题

Preguntas Frecuentes

Häufig Gestellte Fragen

What is a joule in energy measurement?
A joule (J) is the SI unit of energy, representing the energy transferred when a force of one newton acts over one meter. It is equivalent to the energy needed to lift a small apple one meter against Earth's gravity.
How many calories are in a kilocalorie?
One kilocalorie (kcal) equals 1,000 calories (cal). In nutrition, a 'Calorie' with capital C actually refers to a kilocalorie. 1 kcal ≈ 4.184 kilojoules.
What is the difference between Wh and kWh?
A watt-hour (Wh) is the energy produced by one watt of power for one hour. A kilowatt-hour (kWh) equals 1,000 watt-hours and is the standard unit used on electricity bills. 1 kWh = 3.6 megajoules.
How do I convert BTU to joules?
One BTU (British Thermal Unit) equals approximately 1,055 joules. BTU is commonly used in HVAC systems and to describe heating values of fuels. 1 BTU ≈ 252 cal.
What is an electronvolt (eV)?
An electronvolt (eV) is the energy gained by an electron when accelerated through one volt. It is commonly used in atomic and particle physics. 1 eV ≈ 1.602 × 10⁻¹⁹ joules.
var currentLang = 'en'; function setLanguage(lang) { if (!translations[lang]) return; currentLang = lang; localStorage.setItem('gbtoolhub_lang', lang); applyTranslations(); updateLangSelector(); } function applyTranslations() { document.querySelectorAll('[data-i18n]').forEach(el => { const key = el.getAttribute('data-i18n'); if (translations[currentLang] && translations[currentLang][key]) { el.textContent = translations[currentLang][key]; } }); document.querySelectorAll('[data-i18n-html]').forEach(el => { const key = el.getAttribute('data-i18n-html'); if (translations[currentLang] && translations[currentLang][key]) { el.innerHTML = translations[currentLang][key]; } }); } function updateLangSelector() { var selector = document.getElementById('langSelector'); if (selector) selector.value = currentLang; } function detectUserLanguage() { var urlParams = new URLSearchParams(window.location.search); var urlLang = urlParams.get('lang'); if (urlLang && translations[urlLang]) { localStorage.setItem('gbtoolhub_lang', urlLang); return urlLang; } var stored = localStorage.getItem('gbtoolhub_lang'); if (stored && translations[stored]) return stored; var browserLang = navigator.language || navigator.userLanguage || 'en'; var langCode = browserLang.split('-')[0]; if (translations[langCode]) return langCode; return 'en'; }