Crypto amounts live in many denominations, and mixing them up costs real money. This converter moves a value across all Bitcoin units (satoshi, mBTC, BTC) or all Ethereum units (wei, gwei, ether) at once, with an optional USD value from a price you supply.
How it works
Each chain has a smallest base unit, and every denomination is a fixed power of ten away from it:
Bitcoin base = satoshi
1 BTC = 100,000,000 satoshi (10^8)
1 mBTC = 100,000 satoshi (10^5)
Ethereum base = wei
1 ether = 1,000,000,000,000,000,000 wei (10^18)
1 gwei = 1,000,000,000 wei (10^9)
The wei base is handled with big integers because an ether expressed in wei has 19 digits — beyond exact floating-point range — so conversions stay precise.
Example and tips
Type 21 gwei and the tool shows 0.000000021 ether and 21,000,000,000 wei
instantly; multiply that by your gas limit to price a transaction. On the Bitcoin
side, 2,500 satoshi reads as 0.000025 BTC. Always confirm which unit an API
or contract expects: Ethereum JSON-RPC returns balances in wei, most explorers
display ether, and a one-unit mismatch is a billion-fold error.