Convert CNY to EGP
Chinese Yuan → Egyptian Pound
1 CNY = 7.713195 EGP(1 EGP = 0.129648 CNY)
Currency converter
1 CNY =
7.7132 EGP
CNY to EGP: last 30 days
Over the last 30 days, 1 CNY traded between 7.4441 and 7.7957 EGP, averaging 7.6461 EGP. The CNY/EGP rate is up 3.18% since 2026-08-28.
- 30-day high
- 7.7957
- 2026-09-19
- 30-day low
- 7.4441
- 2026-08-30
- 30-day average
- 7.6461
- Days with data: 30
- 30-day change
- +3.18%
- since 2026-08-28
7.7957
7.44412026-08-28 → 2026-09-26
| Date | 1 CNY in EGP | Daily change |
|---|---|---|
| 2026-09-26 | 7.7132 | 0.00% |
| 2026-09-25 | 7.7132 | +0.70% |
| 2026-09-24 | 7.6598 | -0.49% |
| 2026-09-23 | 7.6972 | -0.66% |
| 2026-09-22 | 7.7483 | -0.32% |
| 2026-09-21 | 7.7732 | -0.14% |
| 2026-09-20 | 7.784 | -0.15% |
| 2026-09-19 | 7.7957 | +0.17% |
| 2026-09-18 | 7.7827 | +0.01% |
| 2026-09-17 | 7.7822 | +0.57% |
| 2026-09-16 | 7.7382 | +0.44% |
| 2026-09-15 | 7.704 | +0.61% |
| 2026-09-14 | 7.6573 | +0.01% |
| 2026-09-13 | 7.6564 | -0.03% |
| 2026-09-12 | 7.6586 | +0.03% |
| Date | 1 CNY in EGP | Daily change |
|---|---|---|
| 2026-09-11 | 7.6564 | +0.30% |
| 2026-09-10 | 7.6336 | +0.36% |
| 2026-09-09 | 7.6065 | +0.24% |
| 2026-09-08 | 7.5886 | -0.04% |
| 2026-09-07 | 7.5916 | +0.03% |
| 2026-09-06 | 7.5893 | +0.02% |
| 2026-09-05 | 7.5879 | -0.07% |
| 2026-09-04 | 7.593 | -0.08% |
| 2026-09-03 | 7.5989 | +0.32% |
| 2026-09-02 | 7.5746 | -0.00% |
| 2026-09-01 | 7.5748 | +0.32% |
| 2026-08-31 | 7.5505 | +1.43% |
| 2026-08-30 | 7.4441 | -0.13% |
| 2026-08-29 | 7.454 | -0.28% |
| 2026-08-28 | 7.4752 | — |
CNY to EGP conversion table
1 CNY7.7132 EGP
5 CNY38.566 EGP
10 CNY77.1319 EGP
25 CNY192.8299 EGP
50 CNY385.6598 EGP
100 CNY771.3195 EGP
500 CNY3,856.5975 EGP
1,000 CNY7,713.1949 EGP
5,000 CNY38,565.975 EGP
10,000 CNY77,131.949 EGP
Get the CNY/EGP rate in your app
One GET request returns the latest CNY → EGP 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/CNY/EGP"fetch('https://rate-api.com/api/v1/pair/CNY/EGP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CNY = ${data.rate} EGP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CNY/EGP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CNY = {data['rate']} EGP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CNY/EGP');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 CNY = {$data['rate']} EGP\n";Example response
{
"success": true,
"pair": {
"from": "CNY",
"to": "EGP"
},
"rate": 7.7132,
"timestamp": 1790429401,
"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
EGP to CNYEgyptian Pound → Chinese Yuan0.12965Convert CNY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.