Convert JPY to CNY
Japanese Yen → Chinese Yuan
1 JPY = 0.0425993 CNY(1 CNY = 23.474546 JPY)
Currency converter
1 JPY =
0.042599 CNY
JPY to CNY: last 30 days
Over the last 30 days, 1 JPY traded between 0.041972 and 0.043765 CNY, averaging 0.042818 CNY. The JPY/CNY rate is up 1.21% since 2026-08-28.
- 30-day high
- 0.043765
- 2026-09-09
- 30-day low
- 0.041972
- 2026-09-01
- 30-day average
- 0.042818
- Days with data: 30
- 30-day change
- +1.21%
- since 2026-08-28
0.043765
0.0419722026-08-28 → 2026-09-26
| Date | 1 JPY in CNY | Daily change |
|---|---|---|
| 2026-09-26 | 0.042599 | 0.00% |
| 2026-09-25 | 0.042599 | +0.81% |
| 2026-09-24 | 0.042256 | -0.51% |
| 2026-09-23 | 0.042474 | -0.36% |
| 2026-09-22 | 0.042627 | +0.13% |
| 2026-09-21 | 0.042573 | +0.36% |
| 2026-09-20 | 0.042419 | 0.00% |
| 2026-09-19 | 0.042419 | 0.00% |
| 2026-09-18 | 0.042419 | -1.54% |
| 2026-09-17 | 0.043082 | -0.41% |
| 2026-09-16 | 0.043258 | -0.10% |
| 2026-09-15 | 0.0433 | -0.24% |
| 2026-09-14 | 0.043406 | -0.33% |
| 2026-09-13 | 0.043548 | 0.00% |
| 2026-09-12 | 0.043548 | 0.00% |
| Date | 1 JPY in CNY | Daily change |
|---|---|---|
| 2026-09-11 | 0.043548 | +0.12% |
| 2026-09-10 | 0.043497 | -0.61% |
| 2026-09-09 | 0.043765 | +0.63% |
| 2026-09-08 | 0.04349 | +0.28% |
| 2026-09-07 | 0.043367 | +0.97% |
| 2026-09-06 | 0.04295 | 0.00% |
| 2026-09-05 | 0.04295 | 0.00% |
| 2026-09-04 | 0.04295 | -0.28% |
| 2026-09-03 | 0.043068 | +2.26% |
| 2026-09-02 | 0.042115 | +0.34% |
| 2026-09-01 | 0.041972 | -0.23% |
| 2026-08-31 | 0.042069 | -0.05% |
| 2026-08-30 | 0.04209 | 0.00% |
| 2026-08-29 | 0.04209 | 0.00% |
| 2026-08-28 | 0.04209 | — |
JPY to CNY conversion table
1 JPY0.042599 CNY
5 JPY0.213 CNY
10 JPY0.42599 CNY
25 JPY1.065 CNY
50 JPY2.13 CNY
100 JPY4.2599 CNY
500 JPY21.2997 CNY
1,000 JPY42.5993 CNY
5,000 JPY212.9967 CNY
10,000 JPY425.9933 CNY
Get the JPY/CNY rate in your app
One GET request returns the latest JPY → 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/JPY/CNY"fetch('https://rate-api.com/api/v1/pair/JPY/CNY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 JPY = ${data.rate} CNY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/JPY/CNY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 JPY = {data['rate']} CNY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/JPY/CNY');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 JPY = {$data['rate']} CNY\n";Example response
{
"success": true,
"pair": {
"from": "JPY",
"to": "CNY"
},
"rate": 0.0426,
"timestamp": 1790429331,
"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 JPYChinese Yuan → Japanese Yen23.4745Convert JPY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.