Convert GBP to CNY
British Pound → Chinese Yuan
1 GBP = 8.896624 CNY(1 CNY = 0.112402 GBP)
Currency converter
1 GBP =
8.8966 CNY
GBP to CNY: last 30 days
Over the last 30 days, 1 GBP traded between 8.8738 and 9.1287 CNY, averaging 9.0215 CNY. The GBP/CNY rate is down 2.54% since 2026-08-29.
- 30-day high
- 9.1287
- 2026-08-29
- 30-day low
- 8.8738
- 2026-09-24
- 30-day average
- 9.0215
- Days with data: 30
- 30-day change
- -2.54%
- since 2026-08-29
9.1287
8.87382026-08-29 → 2026-09-27
| Date | 1 GBP in CNY | Daily change |
|---|---|---|
| 2026-09-27 | 8.8966 | 0.00% |
| 2026-09-26 | 8.8966 | 0.00% |
| 2026-09-25 | 8.8966 | +0.26% |
| 2026-09-24 | 8.8738 | -0.35% |
| 2026-09-23 | 8.9049 | -0.54% |
| 2026-09-22 | 8.9535 | -0.17% |
| 2026-09-21 | 8.9683 | +0.35% |
| 2026-09-20 | 8.9374 | 0.00% |
| 2026-09-19 | 8.9374 | 0.00% |
| 2026-09-18 | 8.9374 | -0.39% |
| 2026-09-17 | 8.9723 | -0.58% |
| 2026-09-16 | 9.025 | -0.27% |
| 2026-09-15 | 9.0493 | -0.04% |
| 2026-09-14 | 9.0527 | -0.10% |
| 2026-09-13 | 9.0615 | 0.00% |
| Date | 1 GBP in CNY | Daily change |
|---|---|---|
| 2026-09-12 | 9.0615 | 0.00% |
| 2026-09-11 | 9.0615 | -0.06% |
| 2026-09-10 | 9.0671 | -0.35% |
| 2026-09-09 | 9.099 | +0.10% |
| 2026-09-08 | 9.0897 | +0.10% |
| 2026-09-07 | 9.0805 | +0.01% |
| 2026-09-06 | 9.0798 | 0.00% |
| 2026-09-05 | 9.0798 | 0.00% |
| 2026-09-04 | 9.0798 | +0.12% |
| 2026-09-03 | 9.0688 | +0.07% |
| 2026-09-02 | 9.0627 | -0.37% |
| 2026-09-01 | 9.096 | -0.02% |
| 2026-08-31 | 9.0979 | -0.34% |
| 2026-08-30 | 9.1287 | 0.00% |
| 2026-08-29 | 9.1287 | — |
GBP to CNY conversion table
1 GBP8.8966 CNY
5 GBP44.4831 CNY
10 GBP88.9662 CNY
25 GBP222.4156 CNY
50 GBP444.8312 CNY
100 GBP889.6624 CNY
500 GBP4,448.3119 CNY
1,000 GBP8,896.6239 CNY
5,000 GBP44,483.119 CNY
10,000 GBP88,966.239 CNY
Get the GBP/CNY rate in your app
One GET request returns the latest GBP → CNY 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/CNY"fetch('https://rate-api.com/api/v1/pair/GBP/CNY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} CNY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/CNY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} CNY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/CNY');
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']} CNY\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "CNY"
},
"rate": 8.8966,
"timestamp": 1790470824,
"date": "2026-09-27"
}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
CNY to GBPChinese Yuan → British Pound0.1124Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.