Convert MYR to CNY
Malaysian Ringgit → Chinese Yuan
1 MYR = 1.647817 CNY(1 CNY = 0.606863 MYR)
Currency converter
1 MYR =
1.6478 CNY
MYR to CNY: last 30 days
Over the last 30 days, 1 MYR traded between 1.6364 and 1.6694 CNY, averaging 1.6518 CNY. The MYR/CNY rate is down 1.29% since 2026-08-28.
- 30-day high
- 1.6694
- 2026-08-28
- 30-day low
- 1.6364
- 2026-09-17
- 30-day average
- 1.6518
- Days with data: 30
- 30-day change
- -1.29%
- since 2026-08-28
1.6694
1.63642026-08-28 → 2026-09-26
| Date | 1 MYR in CNY | Daily change |
|---|---|---|
| 2026-09-26 | 1.6478 | 0.00% |
| 2026-09-25 | 1.6478 | +0.33% |
| 2026-09-24 | 1.6424 | -0.09% |
| 2026-09-23 | 1.644 | -0.04% |
| 2026-09-22 | 1.6446 | +0.16% |
| 2026-09-21 | 1.642 | +0.04% |
| 2026-09-20 | 1.6414 | 0.00% |
| 2026-09-19 | 1.6414 | 0.00% |
| 2026-09-18 | 1.6414 | +0.31% |
| 2026-09-17 | 1.6364 | -0.29% |
| 2026-09-16 | 1.6411 | -0.07% |
| 2026-09-15 | 1.6422 | -0.22% |
| 2026-09-14 | 1.6458 | -0.13% |
| 2026-09-13 | 1.648 | 0.00% |
| 2026-09-12 | 1.648 | 0.00% |
| Date | 1 MYR in CNY | Daily change |
|---|---|---|
| 2026-09-11 | 1.648 | -0.09% |
| 2026-09-10 | 1.6496 | +0.09% |
| 2026-09-09 | 1.6481 | -0.25% |
| 2026-09-08 | 1.6522 | -0.39% |
| 2026-09-07 | 1.6587 | -0.04% |
| 2026-09-06 | 1.6593 | 0.00% |
| 2026-09-05 | 1.6593 | 0.00% |
| 2026-09-04 | 1.6593 | -0.20% |
| 2026-09-03 | 1.6625 | +0.06% |
| 2026-09-02 | 1.6615 | -0.16% |
| 2026-09-01 | 1.6641 | -0.30% |
| 2026-08-31 | 1.6691 | -0.02% |
| 2026-08-30 | 1.6694 | 0.00% |
| 2026-08-29 | 1.6694 | 0.00% |
| 2026-08-28 | 1.6694 | — |
MYR to CNY conversion table
1 MYR1.6478 CNY
5 MYR8.2391 CNY
10 MYR16.4782 CNY
25 MYR41.1954 CNY
50 MYR82.3909 CNY
100 MYR164.7817 CNY
500 MYR823.9086 CNY
1,000 MYR1,647.8173 CNY
5,000 MYR8,239.0864 CNY
10,000 MYR16,478.173 CNY
Get the MYR/CNY rate in your app
One GET request returns the latest MYR → 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/MYR/CNY"fetch('https://rate-api.com/api/v1/pair/MYR/CNY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 MYR = ${data.rate} CNY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/MYR/CNY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 MYR = {data['rate']} CNY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/MYR/CNY');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 MYR = {$data['rate']} CNY\n";Example response
{
"success": true,
"pair": {
"from": "MYR",
"to": "CNY"
},
"rate": 1.6478,
"timestamp": 1790435287,
"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 MYRChinese Yuan → Malaysian Ringgit0.60686Convert MYR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.