Convert JPY to CNH
Japanese Yen → Chinese Yuan (Offshore)
1 JPY = 0.0426404 CNH(1 CNH = 23.451924 JPY)
Currency converter
1 JPY =
0.04264 CNH
JPY to CNH: last 30 days
Over the last 30 days, 1 JPY traded between 0.041963 and 0.043758 CNH, averaging 0.042836 CNH. The JPY/CNH rate is up 1.29% since 2026-08-28.
- 30-day high
- 0.043758
- 2026-09-09
- 30-day low
- 0.041963
- 2026-09-01
- 30-day average
- 0.042836
- Days with data: 30
- 30-day change
- +1.29%
- since 2026-08-28
0.043758
0.0419632026-08-28 → 2026-09-26
| Date | 1 JPY in CNH | Daily change |
|---|---|---|
| 2026-09-26 | 0.04264 | 0.00% |
| 2026-09-25 | 0.04264 | +0.86% |
| 2026-09-24 | 0.042278 | -0.43% |
| 2026-09-23 | 0.042462 | -0.32% |
| 2026-09-22 | 0.042599 | +0.07% |
| 2026-09-21 | 0.04257 | +0.32% |
| 2026-09-20 | 0.042435 | -0.11% |
| 2026-09-19 | 0.042481 | +0.19% |
| 2026-09-18 | 0.042399 | -1.60% |
| 2026-09-17 | 0.043087 | -0.44% |
| 2026-09-16 | 0.043277 | -0.05% |
| 2026-09-15 | 0.043298 | -0.23% |
| 2026-09-14 | 0.043399 | -0.32% |
| 2026-09-13 | 0.043541 | -0.01% |
| 2026-09-12 | 0.043544 | -0.11% |
| Date | 1 JPY in CNH | Daily change |
|---|---|---|
| 2026-09-11 | 0.043591 | +0.21% |
| 2026-09-10 | 0.0435 | -0.59% |
| 2026-09-09 | 0.043758 | +0.58% |
| 2026-09-08 | 0.043505 | +0.30% |
| 2026-09-07 | 0.043376 | +1.03% |
| 2026-09-06 | 0.042933 | -0.00% |
| 2026-09-05 | 0.042933 | -0.13% |
| 2026-09-04 | 0.04299 | -0.16% |
| 2026-09-03 | 0.043059 | +2.21% |
| 2026-09-02 | 0.042129 | +0.40% |
| 2026-09-01 | 0.041963 | -0.32% |
| 2026-08-31 | 0.042098 | -0.13% |
| 2026-08-30 | 0.042153 | -0.46% |
| 2026-08-29 | 0.042348 | +0.60% |
| 2026-08-28 | 0.042096 | — |
JPY to CNH conversion table
1 JPY0.04264 CNH
5 JPY0.2132 CNH
10 JPY0.4264 CNH
25 JPY1.066 CNH
50 JPY2.132 CNH
100 JPY4.264 CNH
500 JPY21.3202 CNH
1,000 JPY42.6404 CNH
5,000 JPY213.2021 CNH
10,000 JPY426.4042 CNH
Get the JPY/CNH rate in your app
One GET request returns the latest JPY → CNH 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/CNH"fetch('https://rate-api.com/api/v1/pair/JPY/CNH', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 JPY = ${data.rate} CNH`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/JPY/CNH",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 JPY = {data['rate']} CNH")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/JPY/CNH');
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']} CNH\n";Example response
{
"success": true,
"pair": {
"from": "JPY",
"to": "CNH"
},
"rate": 0.0426,
"timestamp": 1790429356,
"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
CNH to JPYChinese Yuan (Offshore) → Japanese Yen23.4519Convert JPY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.