Convert CNY to MDL
Chinese Yuan → Moldovan Leu
1 CNY = 2.634452 MDL(1 MDL = 0.379586 CNY)
Currency converter
1 CNY =
2.6345 MDL
CNY to MDL: last 30 days
Over the last 30 days, 1 CNY traded between 2.5486 and 2.6345 MDL, averaging 2.5919 MDL. The CNY/MDL rate is up 2.40% since 2026-08-29.
- 30-day high
- 2.6345
- 2026-09-26
- 30-day low
- 2.5486
- 2026-09-01
- 30-day average
- 2.5919
- Days with data: 30
- 30-day change
- +2.40%
- since 2026-08-29
2.6345
2.54862026-08-29 → 2026-09-27
| Date | 1 CNY in MDL | Daily change |
|---|---|---|
| 2026-09-27 | 2.6345 | 0.00% |
| 2026-09-26 | 2.6345 | +0.56% |
| 2026-09-25 | 2.6199 | -0.01% |
| 2026-09-24 | 2.6202 | -0.07% |
| 2026-09-23 | 2.6221 | +0.06% |
| 2026-09-22 | 2.6206 | -0.04% |
| 2026-09-21 | 2.6215 | +0.24% |
| 2026-09-20 | 2.6154 | -0.28% |
| 2026-09-19 | 2.6228 | +0.08% |
| 2026-09-18 | 2.6208 | +0.26% |
| 2026-09-17 | 2.6141 | +0.87% |
| 2026-09-16 | 2.5915 | +0.01% |
| 2026-09-15 | 2.5912 | +0.32% |
| 2026-09-14 | 2.583 | +0.52% |
| 2026-09-13 | 2.5695 | -0.39% |
| Date | 1 CNY in MDL | Daily change |
|---|---|---|
| 2026-09-12 | 2.5796 | +0.08% |
| 2026-09-11 | 2.5776 | +0.12% |
| 2026-09-10 | 2.5746 | +0.29% |
| 2026-09-09 | 2.5672 | -0.13% |
| 2026-09-08 | 2.5705 | +0.13% |
| 2026-09-07 | 2.5671 | -0.13% |
| 2026-09-06 | 2.5705 | +0.18% |
| 2026-09-05 | 2.566 | -0.29% |
| 2026-09-04 | 2.5735 | -0.09% |
| 2026-09-03 | 2.5759 | +0.04% |
| 2026-09-02 | 2.5748 | +1.03% |
| 2026-09-01 | 2.5486 | -1.41% |
| 2026-08-31 | 2.5852 | +0.54% |
| 2026-08-30 | 2.5712 | -0.06% |
| 2026-08-29 | 2.5727 | — |
CNY to MDL conversion table
1 CNY2.6345 MDL
5 CNY13.1723 MDL
10 CNY26.3445 MDL
25 CNY65.8613 MDL
50 CNY131.7226 MDL
100 CNY263.4452 MDL
500 CNY1,317.2258 MDL
1,000 CNY2,634.4517 MDL
5,000 CNY13,172.258 MDL
10,000 CNY26,344.517 MDL
Get the CNY/MDL rate in your app
One GET request returns the latest CNY → MDL 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/MDL"fetch('https://rate-api.com/api/v1/pair/CNY/MDL', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CNY = ${data.rate} MDL`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CNY/MDL",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CNY = {data['rate']} MDL")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CNY/MDL');
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']} MDL\n";Example response
{
"success": true,
"pair": {
"from": "CNY",
"to": "MDL"
},
"rate": 2.6345,
"timestamp": 1790470786,
"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
MDL to CNYMoldovan Leu → Chinese Yuan0.37959Convert CNY to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.