Convert CNY to JPY
Chinese Yuan → Japanese Yen
1 CNY = 23.474546 JPY(1 JPY = 0.0425993 CNY)
Currency converter
1 CNY =
23.4745 JPY
CNY to JPY: last 30 days
Over the last 30 days, 1 CNY traded between 22.8495 and 23.8252 JPY, averaging 23.3491 JPY. The CNY/JPY rate is down 1.20% since 2026-08-29.
- 30-day high
- 23.8252
- 2026-09-01
- 30-day low
- 22.8495
- 2026-09-09
- 30-day average
- 23.3491
- Days with data: 30
- 30-day change
- -1.20%
- since 2026-08-29
23.8252
22.84952026-08-29 → 2026-09-27
| Date | 1 CNY in JPY | Daily change |
|---|---|---|
| 2026-09-27 | 23.4745 | 0.00% |
| 2026-09-26 | 23.4745 | 0.00% |
| 2026-09-25 | 23.4745 | -0.81% |
| 2026-09-24 | 23.6652 | +0.52% |
| 2026-09-23 | 23.5439 | +0.36% |
| 2026-09-22 | 23.4594 | -0.13% |
| 2026-09-21 | 23.4893 | -0.36% |
| 2026-09-20 | 23.5741 | 0.00% |
| 2026-09-19 | 23.5741 | 0.00% |
| 2026-09-18 | 23.5741 | +1.56% |
| 2026-09-17 | 23.2113 | +0.41% |
| 2026-09-16 | 23.1173 | +0.10% |
| 2026-09-15 | 23.0947 | +0.24% |
| 2026-09-14 | 23.0383 | +0.33% |
| 2026-09-13 | 22.9629 | 0.00% |
| Date | 1 CNY in JPY | Daily change |
|---|---|---|
| 2026-09-12 | 22.9629 | 0.00% |
| 2026-09-11 | 22.9629 | -0.12% |
| 2026-09-10 | 22.9903 | +0.62% |
| 2026-09-09 | 22.8495 | -0.63% |
| 2026-09-08 | 22.9938 | -0.28% |
| 2026-09-07 | 23.0592 | -0.96% |
| 2026-09-06 | 23.283 | 0.00% |
| 2026-09-05 | 23.283 | 0.00% |
| 2026-09-04 | 23.283 | +0.28% |
| 2026-09-03 | 23.2189 | -2.21% |
| 2026-09-02 | 23.7447 | -0.34% |
| 2026-09-01 | 23.8252 | +0.23% |
| 2026-08-31 | 23.7704 | +0.05% |
| 2026-08-30 | 23.7587 | 0.00% |
| 2026-08-29 | 23.7587 | — |
CNY to JPY conversion table
1 CNY23.4745 JPY
5 CNY117.3727 JPY
10 CNY234.7455 JPY
25 CNY586.8637 JPY
50 CNY1,173.7273 JPY
100 CNY2,347.4546 JPY
500 CNY11,737.273 JPY
1,000 CNY23,474.546 JPY
5,000 CNY117,372.73 JPY
10,000 CNY234,745.46 JPY
Get the CNY/JPY rate in your app
One GET request returns the latest CNY → JPY 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/JPY"fetch('https://rate-api.com/api/v1/pair/CNY/JPY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CNY = ${data.rate} JPY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CNY/JPY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CNY = {data['rate']} JPY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CNY/JPY');
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']} JPY\n";Example response
{
"success": true,
"pair": {
"from": "CNY",
"to": "JPY"
},
"rate": 23.4745,
"timestamp": 1790470784,
"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
JPY to CNYJapanese Yen → Chinese Yuan0.042599Convert CNY to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.