Convert EGP to CNY
Egyptian Pound → Chinese Yuan
1 EGP = 0.129648 CNY(1 CNY = 7.713195 EGP)
Currency converter
1 EGP =
0.12965 CNY
EGP to CNY: last 30 days
Over the last 30 days, 1 EGP traded between 0.12828 and 0.13433 CNY, averaging 0.13081 CNY. The EGP/CNY rate is down 3.09% since 2026-08-28.
- 30-day high
- 0.13433
- 2026-08-30
- 30-day low
- 0.12828
- 2026-09-19
- 30-day average
- 0.13081
- Days with data: 30
- 30-day change
- -3.09%
- since 2026-08-28
0.13433
0.128282026-08-28 → 2026-09-26
| Date | 1 EGP in CNY | Daily change |
|---|---|---|
| 2026-09-26 | 0.12965 | 0.00% |
| 2026-09-25 | 0.12965 | -0.69% |
| 2026-09-24 | 0.13055 | +0.49% |
| 2026-09-23 | 0.12992 | +0.66% |
| 2026-09-22 | 0.12906 | +0.32% |
| 2026-09-21 | 0.12865 | +0.14% |
| 2026-09-20 | 0.12847 | +0.15% |
| 2026-09-19 | 0.12828 | -0.17% |
| 2026-09-18 | 0.12849 | -0.01% |
| 2026-09-17 | 0.1285 | -0.56% |
| 2026-09-16 | 0.12923 | -0.44% |
| 2026-09-15 | 0.1298 | -0.61% |
| 2026-09-14 | 0.13059 | -0.01% |
| 2026-09-13 | 0.13061 | +0.03% |
| 2026-09-12 | 0.13057 | -0.03% |
| Date | 1 EGP in CNY | Daily change |
|---|---|---|
| 2026-09-11 | 0.13061 | -0.30% |
| 2026-09-10 | 0.131 | -0.36% |
| 2026-09-09 | 0.13147 | -0.23% |
| 2026-09-08 | 0.13178 | +0.04% |
| 2026-09-07 | 0.13172 | -0.03% |
| 2026-09-06 | 0.13176 | -0.02% |
| 2026-09-05 | 0.13179 | +0.07% |
| 2026-09-04 | 0.1317 | +0.08% |
| 2026-09-03 | 0.1316 | -0.32% |
| 2026-09-02 | 0.13202 | +0.00% |
| 2026-09-01 | 0.13202 | -0.32% |
| 2026-08-31 | 0.13244 | -1.41% |
| 2026-08-30 | 0.13433 | +0.13% |
| 2026-08-29 | 0.13416 | +0.28% |
| 2026-08-28 | 0.13378 | — |
EGP to CNY conversion table
1 EGP0.12965 CNY
5 EGP0.64824 CNY
10 EGP1.2965 CNY
25 EGP3.2412 CNY
50 EGP6.4824 CNY
100 EGP12.9648 CNY
500 EGP64.824 CNY
1,000 EGP129.648 CNY
5,000 EGP648.2398 CNY
10,000 EGP1,296.4796 CNY
Get the EGP/CNY rate in your app
One GET request returns the latest EGP → 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/EGP/CNY"fetch('https://rate-api.com/api/v1/pair/EGP/CNY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EGP = ${data.rate} CNY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EGP/CNY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EGP = {data['rate']} CNY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EGP/CNY');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 EGP = {$data['rate']} CNY\n";Example response
{
"success": true,
"pair": {
"from": "EGP",
"to": "CNY"
},
"rate": 0.1296,
"timestamp": 1790435127,
"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
CNY to EGPChinese Yuan → Egyptian Pound7.7132Convert EGP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.