Convert CNY to MOP
Chinese Yuan → Macanese Pataca
1 CNY = 1.20349 MOP(1 MOP = 0.830917 CNY)
Currency converter
1 CNY =
1.2035 MOP
CNY to MOP: last 30 days
Over the last 30 days, 1 CNY traded between 1.2011 and 1.2069 MOP, averaging 1.2038 MOP. The CNY/MOP rate is up 0.17% since 2026-08-28.
- 30-day high
- 1.2069
- 2026-09-21
- 30-day low
- 1.2011
- 2026-09-01
- 30-day average
- 1.2038
- Days with data: 30
- 30-day change
- +0.17%
- since 2026-08-28
1.2069
1.20112026-08-28 → 2026-09-26
| Date | 1 CNY in MOP | Daily change |
|---|---|---|
| 2026-09-26 | 1.2035 | 0.00% |
| 2026-09-25 | 1.2035 | +0.01% |
| 2026-09-24 | 1.2034 | -0.09% |
| 2026-09-23 | 1.2045 | -0.12% |
| 2026-09-22 | 1.2059 | -0.08% |
| 2026-09-21 | 1.2069 | +0.04% |
| 2026-09-20 | 1.2065 | +0.00% |
| 2026-09-19 | 1.2065 | +0.01% |
| 2026-09-18 | 1.2064 | +0.14% |
| 2026-09-17 | 1.2047 | +0.01% |
| 2026-09-16 | 1.2046 | +0.07% |
| 2026-09-15 | 1.2038 | -0.04% |
| 2026-09-14 | 1.2042 | -0.00% |
| 2026-09-13 | 1.2042 | +0.00% |
| 2026-09-12 | 1.2042 | +0.02% |
| Date | 1 CNY in MOP | Daily change |
|---|---|---|
| 2026-09-11 | 1.204 | -0.02% |
| 2026-09-10 | 1.2043 | +0.01% |
| 2026-09-09 | 1.2042 | +0.06% |
| 2026-09-08 | 1.2034 | +0.03% |
| 2026-09-07 | 1.2031 | -0.02% |
| 2026-09-06 | 1.2034 | -0.00% |
| 2026-09-05 | 1.2034 | +0.00% |
| 2026-09-04 | 1.2034 | +0.11% |
| 2026-09-03 | 1.2021 | +0.04% |
| 2026-09-02 | 1.2016 | +0.04% |
| 2026-09-01 | 1.2011 | -0.04% |
| 2026-08-31 | 1.2016 | -0.01% |
| 2026-08-30 | 1.2017 | +0.02% |
| 2026-08-29 | 1.2015 | +0.00% |
| 2026-08-28 | 1.2015 | — |
CNY to MOP conversion table
1 CNY1.2035 MOP
5 CNY6.0174 MOP
10 CNY12.0349 MOP
25 CNY30.0872 MOP
50 CNY60.1745 MOP
100 CNY120.349 MOP
500 CNY601.7449 MOP
1,000 CNY1,203.4898 MOP
5,000 CNY6,017.4492 MOP
10,000 CNY12,034.898 MOP
Get the CNY/MOP rate in your app
One GET request returns the latest CNY → MOP 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/MOP"fetch('https://rate-api.com/api/v1/pair/CNY/MOP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CNY = ${data.rate} MOP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CNY/MOP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CNY = {data['rate']} MOP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CNY/MOP');
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']} MOP\n";Example response
{
"success": true,
"pair": {
"from": "CNY",
"to": "MOP"
},
"rate": 1.2035,
"timestamp": 1790447428,
"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
MOP to CNYMacanese Pataca → Chinese Yuan0.83092Convert CNY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.