Convert USD to CNH
US Dollar → Chinese Yuan (Offshore)
1 USD = 6.719709 CNH(1 CNH = 0.148816 USD)
Currency converter
1 USD =
6.7197 CNH
USD to CNH: last 30 days
Over the last 30 days, 1 USD traded between 6.6943 and 6.7621 CNH, averaging 6.7131 CNH. The USD/CNH rate is down 0.03% since 2026-08-28.
- 30-day high
- 6.7621
- 2026-08-29
- 30-day low
- 6.6943
- 2026-09-18
- 30-day average
- 6.7131
- Days with data: 30
- 30-day change
- -0.03%
- since 2026-08-28
6.7621
6.69432026-08-28 → 2026-09-26
| Date | 1 USD in CNH | Daily change |
|---|---|---|
| 2026-09-26 | 6.7197 | 0.00% |
| 2026-09-25 | 6.7197 | +0.05% |
| 2026-09-24 | 6.7161 | +0.16% |
| 2026-09-23 | 6.7055 | +0.14% |
| 2026-09-22 | 6.6958 | +0.01% |
| 2026-09-21 | 6.6949 | -0.08% |
| 2026-09-20 | 6.7 | -0.11% |
| 2026-09-19 | 6.7073 | +0.19% |
| 2026-09-18 | 6.6943 | -0.21% |
| 2026-09-17 | 6.7082 | -0.03% |
| 2026-09-16 | 6.7102 | -0.02% |
| 2026-09-15 | 6.7112 | +0.06% |
| 2026-09-14 | 6.7074 | +0.01% |
| 2026-09-13 | 6.707 | -0.01% |
| 2026-09-12 | 6.7076 | -0.11% |
| Date | 1 USD in CNH | Daily change |
|---|---|---|
| 2026-09-11 | 6.7147 | +0.12% |
| 2026-09-10 | 6.7069 | +0.00% |
| 2026-09-09 | 6.7068 | -0.09% |
| 2026-09-08 | 6.7128 | +0.00% |
| 2026-09-07 | 6.7125 | +0.06% |
| 2026-09-06 | 6.7083 | -0.00% |
| 2026-09-05 | 6.7083 | -0.13% |
| 2026-09-04 | 6.7172 | -0.01% |
| 2026-09-03 | 6.7176 | -0.09% |
| 2026-09-02 | 6.7238 | +0.05% |
| 2026-09-01 | 6.7207 | -0.05% |
| 2026-08-31 | 6.7244 | -0.10% |
| 2026-08-30 | 6.731 | -0.46% |
| 2026-08-29 | 6.7621 | +0.60% |
| 2026-08-28 | 6.7219 | — |
USD to CNH conversion table
1 USD6.7197 CNH
5 USD33.5985 CNH
10 USD67.1971 CNH
25 USD167.9927 CNH
50 USD335.9855 CNH
100 USD671.9709 CNH
500 USD3,359.8545 CNH
1,000 USD6,719.7091 CNH
5,000 USD33,598.545 CNH
10,000 USD67,197.091 CNH
Get the USD/CNH rate in your app
One GET request returns the latest USD → CNH rate as JSON. Send your API key in the Authorization header.
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://rate-api.com/api/v1/pair/USD/CNH"fetch('https://rate-api.com/api/v1/pair/USD/CNH', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} CNH`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/CNH",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} CNH")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/CNH');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 USD = {$data['rate']} CNH\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "CNH"
},
"rate": 6.7197,
"timestamp": 1790437925,
"date": "2026-09-26"
}Replace YOUR_API_KEY with a key from your dashboard. The same key also works in the URL path or an X-API-Key header.
Get your free API key
Free plan: 2,500 requests a month, no credit card. Upgrade any time for conversion, historical rates and higher limits.
Related conversions
CNH to USDChinese Yuan (Offshore) → US Dollar0.14882Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.