Convert GBP to CNH
British Pound → Chinese Yuan (Offshore)
1 GBP = 8.905206 CNH(1 CNH = 0.112294 GBP)
Currency converter
1 GBP =
8.9052 CNH
GBP to CNH: last 30 days
Over the last 30 days, 1 GBP traded between 8.8784 and 9.1847 CNH, averaging 9.0331 CNH. The GBP/CNH rate is down 2.46% since 2026-08-28.
- 30-day high
- 9.1847
- 2026-08-29
- 30-day low
- 8.8784
- 2026-09-24
- 30-day average
- 9.0331
- Days with data: 30
- 30-day change
- -2.46%
- since 2026-08-28
9.1847
8.87842026-08-28 → 2026-09-26
| Date | 1 GBP in CNH | Daily change |
|---|---|---|
| 2026-09-26 | 8.9052 | 0.00% |
| 2026-09-25 | 8.9052 | +0.30% |
| 2026-09-24 | 8.8784 | -0.27% |
| 2026-09-23 | 8.9024 | -0.51% |
| 2026-09-22 | 8.9477 | -0.22% |
| 2026-09-21 | 8.9677 | +0.30% |
| 2026-09-20 | 8.9406 | -0.11% |
| 2026-09-19 | 8.9503 | +0.19% |
| 2026-09-18 | 8.933 | -0.45% |
| 2026-09-17 | 8.9732 | -0.62% |
| 2026-09-16 | 9.0291 | -0.22% |
| 2026-09-15 | 9.0489 | -0.03% |
| 2026-09-14 | 9.0513 | -0.09% |
| 2026-09-13 | 9.0598 | -0.01% |
| 2026-09-12 | 9.0606 | -0.11% |
| Date | 1 GBP in CNH | Daily change |
|---|---|---|
| 2026-09-11 | 9.0702 | +0.03% |
| 2026-09-10 | 9.0679 | -0.33% |
| 2026-09-09 | 9.0977 | +0.05% |
| 2026-09-08 | 9.0928 | +0.11% |
| 2026-09-07 | 9.0825 | +0.07% |
| 2026-09-06 | 9.0763 | -0.00% |
| 2026-09-05 | 9.0763 | -0.13% |
| 2026-09-04 | 9.0883 | +0.24% |
| 2026-09-03 | 9.0668 | +0.01% |
| 2026-09-02 | 9.0657 | -0.31% |
| 2026-09-01 | 9.0939 | -0.11% |
| 2026-08-31 | 9.1042 | -0.42% |
| 2026-08-30 | 9.1424 | -0.46% |
| 2026-08-29 | 9.1847 | +0.60% |
| 2026-08-28 | 9.1301 | — |
GBP to CNH conversion table
1 GBP8.9052 CNH
5 GBP44.526 CNH
10 GBP89.0521 CNH
25 GBP222.6301 CNH
50 GBP445.2603 CNH
100 GBP890.5206 CNH
500 GBP4,452.6028 CNH
1,000 GBP8,905.2057 CNH
5,000 GBP44,526.028 CNH
10,000 GBP89,052.057 CNH
Get the GBP/CNH rate in your app
One GET request returns the latest GBP → 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/GBP/CNH"fetch('https://rate-api.com/api/v1/pair/GBP/CNH', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} CNH`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/CNH",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} CNH")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/CNH');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 GBP = {$data['rate']} CNH\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "CNH"
},
"rate": 8.9052,
"timestamp": 1790429439,
"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 GBPChinese Yuan (Offshore) → British Pound0.11229Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.