Two Screens, Two Numbers, One Pair
One site says EUR/USD is 1.0850. Another says USD/EUR is 0.9217. A third quotes 1.0851 and a fourth 1.0849.
Nobody's wrong. You're looking at inverse quotes, different conventions, and different sources — and if you're converting money for anything that matters, the differences between them are worth understanding before they cost you.
Base and Quote
Every currency pair has two parts:
EUR/USD = 1.0850
↑ ↑
base quote
Read it as: one unit of the base currency costs 1.0850 units of the quote currency. One euro costs 1.0850 US dollars.
The base is always the unit. The quote is always the price. Getting this backwards inverts your entire calculation, and because exchange rates are often near 1.0, the error isn't always obvious from the magnitude of the answer.
To convert:
From base to quote: multiply by the rate
From quote to base: divide by the rate
€500 to dollars: 500 × 1.0850 = $542.50 $500 to euros: 500 ÷ 1.0850 = €460.83
The Inverse Isn't a Second Rate
USD/EUR is simply 1 ÷ 1.0850 = 0.92166. Same information, expressed with the roles swapped.
Where this causes trouble is rounding. If a source publishes USD/EUR as 0.9217 (four decimal places) and you invert it, you get 1.08495 — not 1.0850. The discrepancy is small, but on a large transfer it's real money, and on a spreadsheet that converts back and forth repeatedly it accumulates.
Always convert from the original published quote rather than from an inverted, rounded version. If your source publishes EUR/USD, do euro-to-dollar conversions by multiplying and dollar-to-euro by dividing — don't invert first and then multiply.
Market Conventions
There's an established hierarchy determining which currency goes first when professionals quote a pair. Roughly:
EUR > GBP > AUD > NZD > USD > CAD > CHF > JPY
So it's EUR/USD, never USD/EUR. It's GBP/USD, never USD/GBP. But it's USD/JPY and USD/CHF, because the dollar outranks both.
Pairs where the dollar is the base are sometimes called "direct" quotes and those where it's the quote currency "indirect", though the terminology varies by whose perspective you're taking.
Cable is market slang for GBP/USD, dating from when quotes crossed the Atlantic by telegraph cable.
Consumer-facing tools frequently ignore all of this and display whatever direction the user asked for. That's fine — it's just why the same pair appears in both orders depending on where you look.
Pip conventions
A pip is the standard smallest increment. For most pairs it's the fourth decimal place: EUR/USD moving from 1.0850 to 1.0851 is one pip.
Japanese yen pairs are the exception. Because USD/JPY trades around 150 rather than around 1, the pip is the second decimal place. USD/JPY 149.82 to 149.83 is one pip.
This trips people up when comparing volatility across pairs, and it's why yen pairs are quoted to three decimals rather than five when fractional pips are shown.
Cross Rates and Compounding Costs
Most currency pairs aren't traded directly in meaningful volume. To convert between two less-common currencies, the market routes through a major currency — usually the US dollar.
Say you want NOK to NZD. There's no deep direct market, so:
NOK → USD → NZD
Suppose USD/NOK is 10.50 and NZD/USD is 0.6100.
10,000 NOK ÷ 10.50 = $952.38
$952.38 ÷ 0.6100 = NZ$1,561.28
Mathematically clean. Commercially, less so — because each leg can carry its own spread.
If a provider takes 0.5% on each conversion, you pay roughly 1% total rather than 0.5%. This is a real and frequently invisible cost. Providers that quote a single all-in rate for an exotic pair have already built both legs into the number; providers that convert visibly in two steps may charge twice.
The practical question to ask any provider: is this an all-in rate, or will there be a second conversion?
Cross rates also produce small arbitrage discrepancies. If the direct rate for a pair differs from the rate implied by routing through the dollar, there's a theoretical profit. In liquid markets, automated trading closes these gaps within milliseconds, which is why the implied and direct rates almost always agree to within the spread.
Doing the Conversion Correctly
The Currency Exchange Calculator handles the arithmetic:
- Enter the amount you're converting.
- Select the currency you have.
- Select the currency you want.
- Read the converted amount and the rate applied.
A few things to check whenever you use any converter:
Which direction is the displayed rate? If it shows 1.0850, confirm whether that's euros per dollar or dollars per euro. The tool's labelling should make it explicit; if it doesn't, sanity-check against a known approximate value.
How recent is the rate? Rates move continuously during market hours. A quote from six hours ago is a historical curiosity, not a price.
Is it the mid-market rate? Most converters show the midpoint between bid and ask. That's the right reference number and it's not what any provider will give you. Expect to receive somewhat less, with the gap depending on the provider and the pair.
Rounding, Precision and Storage
If you're building anything that handles money, a few rules save considerable pain.
Never store monetary amounts as floating point. Binary floating point cannot represent most decimal fractions exactly, and errors accumulate across operations. Use integer minor units (store €10.50 as 1050 cents) or a decimal type.
Know your currency's minor unit. The assumption that everything has two decimal places is wrong. Japanese yen and Korean won have zero. Kuwaiti and Bahraini dinars have three. Hard-coding two decimals produces incorrect amounts for a meaningful share of world currencies.
Round once, at the end. Rounding at each intermediate step compounds error. Carry full precision through the calculation and round only when presenting or settling.
Store the rate you used, not just the result. For any transaction record, keep the rate, the timestamp, and the source. Reconciliation without this is miserable.
Use ISO 4217 codes, not symbols. $ is ambiguous across at least a dozen currencies. USD, CAD, AUD, SGD and HKD are not.
Common Mistakes
Inverting a rounded rate. Produces a slightly different number than the original quote. Convert from the source direction.
Assuming symbol equals currency. A price in $ could be US, Canadian, Australian, Singaporean or several others.
Ignoring the second conversion leg. For exotic pairs, ask explicitly whether the quoted rate is all-in.
Comparing rates without comparing fees. A provider offering a better rate with a higher fixed fee may be worse for small amounts and better for large ones. Compute the total received, not the rate.
Treating the mid-market rate as achievable. It's a reference point. Nobody transacts at it.
Applying today's rate to a past transaction. For accounting and tax purposes, most jurisdictions require the rate at the transaction date. Store it at the time.
FAQ
What does EUR/USD 1.0850 mean? One euro buys 1.0850 US dollars. Euro is the base, dollar is the quote.
Why do two sources show slightly different rates? Different liquidity providers, different timestamps, and different spreads. Small variation between sources is normal.
What is a cross rate? A rate between two currencies derived by routing through a third, usually the US dollar, when no deep direct market exists.
Why is a yen pip the second decimal place? Because USD/JPY trades around 150 rather than around 1. The pip convention keeps the increment at a comparable relative size across pairs.
Should I convert in one step or two? One, wherever possible. Each conversion is an opportunity for a spread to be applied.
Which rate should I use for accounting? Generally the rate on the transaction date, per your jurisdiction's rules. Record it at the time rather than reconstructing it later.
The Takeaway
Most currency confusion traces back to two things: not knowing which currency is the base, and not knowing how many conversions are actually happening between what you have and what you get. Get both of those straight and the arithmetic is simple — it's the conventions and the hidden second leg that cost people money.
Convert between currencies free with the Currency Exchange Calculator at sadiqbd.com — no sign-up, instant results. This article is general information and not financial advice.