Convert JOD to CNY
Jordanian Dinar → Chinese Yuan
1 JOD = 9.468594 CNY(1 CNY = 0.105612 JOD)
Currency converter
1 JOD =
9.4686 CNY
JOD to CNY: last 30 days
Over the last 30 days, 1 JOD traded between 9.4434 and 9.4814 CNY, averaging 9.4644 CNY. The JOD/CNY rate is down 0.11% since 2026-08-28.
- 30-day high
- 9.4814
- 2026-09-01
- 30-day low
- 9.4434
- 2026-09-21
- 30-day average
- 9.4644
- Days with data: 30
- 30-day change
- -0.11%
- since 2026-08-28
9.4814
9.44342026-08-28 → 2026-09-26
| Date | 1 JOD in CNY | Daily change |
|---|---|---|
| 2026-09-26 | 9.4686 | 0.00% |
| 2026-09-25 | 9.4686 | +0.01% |
| 2026-09-24 | 9.4677 | +0.08% |
| 2026-09-23 | 9.4603 | +0.11% |
| 2026-09-22 | 9.4501 | +0.07% |
| 2026-09-21 | 9.4434 | -0.03% |
| 2026-09-20 | 9.4465 | 0.00% |
| 2026-09-19 | 9.4465 | +0.00% |
| 2026-09-18 | 9.4462 | -0.15% |
| 2026-09-17 | 9.4605 | +0.01% |
| 2026-09-16 | 9.4599 | -0.07% |
| 2026-09-15 | 9.4661 | +0.05% |
| 2026-09-14 | 9.4618 | +0.00% |
| 2026-09-13 | 9.4615 | 0.00% |
| 2026-09-12 | 9.4615 | 0.00% |
| Date | 1 JOD in CNY | Daily change |
|---|---|---|
| 2026-09-11 | 9.4615 | +0.03% |
| 2026-09-10 | 9.4588 | -0.02% |
| 2026-09-09 | 9.4609 | -0.04% |
| 2026-09-08 | 9.4647 | -0.01% |
| 2026-09-07 | 9.4654 | +0.00% |
| 2026-09-06 | 9.4653 | 0.00% |
| 2026-09-05 | 9.4653 | 0.00% |
| 2026-09-04 | 9.4653 | -0.12% |
| 2026-09-03 | 9.4769 | -0.04% |
| 2026-09-02 | 9.4803 | -0.01% |
| 2026-09-01 | 9.4814 | +0.04% |
| 2026-08-31 | 9.4777 | -0.02% |
| 2026-08-30 | 9.4794 | 0.00% |
| 2026-08-29 | 9.4794 | 0.00% |
| 2026-08-28 | 9.4794 | — |
JOD to CNY conversion table
1 JOD9.4686 CNY
5 JOD47.343 CNY
10 JOD94.6859 CNY
25 JOD236.7149 CNY
50 JOD473.4297 CNY
100 JOD946.8594 CNY
500 JOD4,734.2972 CNY
1,000 JOD9,468.5943 CNY
5,000 JOD47,342.972 CNY
10,000 JOD94,685.943 CNY
Get the JOD/CNY rate in your app
One GET request returns the latest JOD → 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/JOD/CNY"fetch('https://rate-api.com/api/v1/pair/JOD/CNY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 JOD = ${data.rate} CNY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/JOD/CNY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 JOD = {data['rate']} CNY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/JOD/CNY');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 JOD = {$data['rate']} CNY\n";Example response
{
"success": true,
"pair": {
"from": "JOD",
"to": "CNY"
},
"rate": 9.4686,
"timestamp": 1790435100,
"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 JODChinese Yuan → Jordanian Dinar0.10561Convert JOD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.