Why this matters
Ethereum operates on a base unit called Wei, but practically no one thinks or communicates in Wei. Smart contracts return values in Wei, block explorers show gas prices in Gwei, wallets display balances in Ether, and DeFi dashboards might quote amounts in any of the above. Switching between these denominations manually requires multiplying or dividing by powers of ten up to 18 places — an error-prone process that has caused real financial losses when gas calculations are off by a single zero.
This converter eliminates that risk by providing a live two-way interface across the entire Ethereum unit hierarchy. Type a value into any field — Wei, Gwei, Finney, or Ether — and every other field updates instantly. Built-in presets for common reference values like one Gwei and a standard 21,000-gas transfer make it equally useful for quick mental checks and precise transaction planning.
Ethereum unit hierarchy
| Unit | Symbol | ETH Equivalent | Common Use |
|---|---|---|---|
| Wei | wei | 0.000000000000000001 | Smart contract internals |
| Kilowei | kwei | 0.000000000000001 | — |
| Milliwei | mwei | 0.000000000001 | — |
| Microether / Gwei | Gwei | 0.000000001 | Gas price quotes |
| Milliether / Finney | Finney | 0.001 | Legacy unit |
| Ether | ETH | 1 | Wallet balances, DeFi |
How to use it
Type a value into any unit field — Wei, Gwei, Finney, or Ether — and all other fields update instantly.
Use the built-in presets (one Gwei, 21,000 gas units, and others) for common reference points.
To compute a gas cost, multiply your gas limit by the Gwei price, then read the Ether field for the cost in ETH.
Copy any value with the copy button next to its label for pasting into a transaction or script.
Testing your result
Verify a conversion by picking a round number in one unit and checking the opposite direction. For example, enter `1` in the Ether field and confirm the Wei field reads `1000000000000000000`. Then enter `20000000000` in the Gwei field and confirm Ether shows `0.02`. Cross-reference your gas-cost calculation against a block explorer like Etherscan, which displays both Gwei gas prices and ETH transaction fees.
Common mistakes
Confusing Gwei with Gigawei — they are the same unit, but some documentation uses the full name while others abbreviate it, causing unnecessary confusion.
Forgetting that gas price times gas limit gives the fee in Wei, which must then be divided by 10 to the 9th power to get ETH.
Using floating-point arithmetic in custom scripts instead of BigInt, which causes precision loss on large Wei values.
Assuming Finney is widely used — it is defined in the EVM but rarely appears in modern interfaces.
Edge cases and options
The converter uses BigInt internally to avoid the precision loss that standard JavaScript floating-point numbers suffer beyond 2 to the 53rd power. This means even very large Wei values — such as total supply calculations — are accurate. The tool does not fetch live market prices; it converts between denominations only, so you will need a separate price feed to convert ETH to fiat.
Real-world use cases
DeFi users checking gas costs before submitting transactions by entering their gas limit and current Gwei price.
Developers debugging smart contract return values that come back in Wei and need to be displayed as Ether.
Auditors verifying that a protocol's fee calculations correctly convert between Gwei and Wei.
Frequently asked questions
Q: What is Wei?
A: Wei is the smallest unit of Ether: one ETH equals 10 to the 18th power Wei. It is named after Wei Dai, a cryptography pioneer, and the EVM always operates in Wei internally.
Q: What is Gwei and why is it used for gas?
A: Gwei equals 10 to the negative 9th power ETH, or one billion Wei. Gas prices are quoted in Gwei because typical transaction fees fall in the tens of Gwei range, which reads more naturally than trillions of Wei.
Q: What is Finney?
A: One Finney equals 0.001 ETH, or one milliether. It is named after Hal Finney, the first person to receive a Bitcoin transaction. The unit is rarely used today but still defined in the EVM.
Q: How do I compute a gas cost?
A: Multiply the gas limit by the gas price in Gwei, then divide by 10 to the 9th. For a standard 21,000-gas transfer at 20 Gwei: 21,000 times 20 divided by 10 to the 9th equals 0.00042 ETH.
Q: Does the converter handle very large values accurately?
A: Yes — BigInt is used under the hood to avoid floating-point precision loss up to 2 to the 53rd power in Wei. This covers virtually all real-world Ethereum values.
Start using it now
Try the ETH Unit Converter tool. See also Satoshi to BTC Converter, Crypto Denomination Reference, and Ethereum Address Validator.