Convert UGX to CNY
Ugandan Shilling → Chinese Yuan
1 UGX = 0.00170891 CNY(1 CNY = 585.1685 UGX)
Currency converter
1 UGX =
0.0017089 CNY
UGX to CNY: last 30 days
Over the last 30 days, 1 UGX traded between 0.0017008 and 0.0017846 CNY, averaging 0.0017454 CNY. The UGX/CNY rate is down 4.24% since 2026-08-28.
- 30-day high
- 0.0017846
- 2026-08-28
- 30-day low
- 0.0017008
- 2026-09-21
- 30-day average
- 0.0017454
- Days with data: 30
- 30-day change
- -4.24%
- since 2026-08-28
0.0017846
0.00170082026-08-28 → 2026-09-26
| Date | 1 UGX in CNY | Daily change |
|---|---|---|
| 2026-09-26 | 0.0017089 | 0.00% |
| 2026-09-25 | 0.0017089 | -0.56% |
| 2026-09-24 | 0.0017186 | +0.08% |
| 2026-09-23 | 0.0017172 | +0.67% |
| 2026-09-22 | 0.0017058 | +0.29% |
| 2026-09-21 | 0.0017008 | -0.06% |
| 2026-09-20 | 0.0017019 | -0.06% |
| 2026-09-19 | 0.0017029 | -0.09% |
| 2026-09-18 | 0.0017045 | -0.29% |
| 2026-09-17 | 0.0017094 | -0.37% |
| 2026-09-16 | 0.0017157 | -0.47% |
| 2026-09-15 | 0.0017237 | -0.60% |
| 2026-09-14 | 0.0017342 | +0.01% |
| 2026-09-13 | 0.001734 | -0.04% |
| 2026-09-12 | 0.0017348 | -0.93% |
| Date | 1 UGX in CNY | Daily change |
|---|---|---|
| 2026-09-11 | 0.001751 | -1.03% |
| 2026-09-10 | 0.0017692 | -0.13% |
| 2026-09-09 | 0.0017715 | -0.25% |
| 2026-09-08 | 0.001776 | -0.07% |
| 2026-09-07 | 0.0017773 | +0.09% |
| 2026-09-06 | 0.0017757 | -0.07% |
| 2026-09-05 | 0.0017768 | +0.03% |
| 2026-09-04 | 0.0017763 | -0.09% |
| 2026-09-03 | 0.0017778 | -0.11% |
| 2026-09-02 | 0.0017798 | +0.21% |
| 2026-09-01 | 0.0017761 | -0.29% |
| 2026-08-31 | 0.0017813 | -0.10% |
| 2026-08-30 | 0.0017831 | -0.02% |
| 2026-08-29 | 0.0017834 | -0.07% |
| 2026-08-28 | 0.0017846 | — |
UGX to CNY conversion table
1 UGX0.0017089 CNY
5 UGX0.0085445 CNY
10 UGX0.017089 CNY
25 UGX0.042723 CNY
50 UGX0.085445 CNY
100 UGX0.17089 CNY
500 UGX0.85445 CNY
1,000 UGX1.7089 CNY
5,000 UGX8.5445 CNY
10,000 UGX17.0891 CNY
Get the UGX/CNY rate in your app
One GET request returns the latest UGX → 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/UGX/CNY?precision=6"fetch('https://rate-api.com/api/v1/pair/UGX/CNY?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 UGX = ${data.rate} CNY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/UGX/CNY?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 UGX = {data['rate']} CNY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/UGX/CNY?precision=6');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 UGX = {$data['rate']} CNY\n";Example response
{
"success": true,
"pair": {
"from": "UGX",
"to": "CNY"
},
"rate": 0.001709,
"timestamp": 1790432194,
"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 UGXChinese Yuan → Ugandan Shilling585.1685Convert UGX to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.