Convert CNY to ARS
Chinese Yuan → Argentine Peso
1 CNY = 226.39562 ARS(1 ARS = 0.00441705 CNY)
Currency converter
1 CNY =
226.3956 ARS
CNY to ARS: last 30 days
Over the last 30 days, 1 CNY traded between 224.1908 and 226.4784 ARS, averaging 225.2485 ARS. The CNY/ARS rate is up 0.62% since 2026-08-28.
- 30-day high
- 226.4784
- 2026-09-19
- 30-day low
- 224.1908
- 2026-08-30
- 30-day average
- 225.2485
- Days with data: 30
- 30-day change
- +0.62%
- since 2026-08-28
226.4784
224.19082026-08-28 → 2026-09-26
| Date | 1 CNY in ARS | Daily change |
|---|---|---|
| 2026-09-26 | 226.3956 | 0.00% |
| 2026-09-25 | 226.3956 | +0.25% |
| 2026-09-24 | 225.825 | +0.03% |
| 2026-09-23 | 225.756 | -0.09% |
| 2026-09-22 | 225.9613 | +0.23% |
| 2026-09-21 | 225.4369 | -0.32% |
| 2026-09-20 | 226.1497 | -0.15% |
| 2026-09-19 | 226.4784 | +0.45% |
| 2026-09-18 | 225.4534 | -0.03% |
| 2026-09-17 | 225.5324 | +0.39% |
| 2026-09-16 | 224.6661 | -0.01% |
| 2026-09-15 | 224.6844 | -0.38% |
| 2026-09-14 | 225.537 | +0.29% |
| 2026-09-13 | 224.8926 | -0.00% |
| 2026-09-12 | 224.898 | -0.27% |
| Date | 1 CNY in ARS | Daily change |
|---|---|---|
| 2026-09-11 | 225.496 | -0.10% |
| 2026-09-10 | 225.7243 | +0.17% |
| 2026-09-09 | 225.3326 | +0.03% |
| 2026-09-08 | 225.275 | +0.18% |
| 2026-09-07 | 224.8747 | +0.04% |
| 2026-09-06 | 224.7859 | +0.04% |
| 2026-09-05 | 224.6958 | -0.04% |
| 2026-09-04 | 224.776 | -0.03% |
| 2026-09-03 | 224.8445 | -0.10% |
| 2026-09-02 | 225.0585 | +0.28% |
| 2026-09-01 | 224.4278 | +0.00% |
| 2026-08-31 | 224.4233 | +0.10% |
| 2026-08-30 | 224.1908 | -0.13% |
| 2026-08-29 | 224.4894 | -0.23% |
| 2026-08-28 | 224.9979 | — |
CNY to ARS conversion table
1 CNY226.3956 ARS
5 CNY1,131.9781 ARS
10 CNY2,263.9562 ARS
25 CNY5,659.8904 ARS
50 CNY11,319.781 ARS
100 CNY22,639.562 ARS
500 CNY113,197.81 ARS
1,000 CNY226,395.62 ARS
5,000 CNY1,131,978.1 ARS
10,000 CNY2,263,956.2 ARS
Get the CNY/ARS rate in your app
One GET request returns the latest CNY → ARS 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/ARS"fetch('https://rate-api.com/api/v1/pair/CNY/ARS', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CNY = ${data.rate} ARS`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CNY/ARS",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CNY = {data['rate']} ARS")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CNY/ARS');
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']} ARS\n";Example response
{
"success": true,
"pair": {
"from": "CNY",
"to": "ARS"
},
"rate": 226.3956,
"timestamp": 1790447441,
"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
ARS to CNYArgentine Peso → Chinese Yuan0.004417Convert CNY to other currencies
Convert other currencies to ARS
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.