Convert CNY to FJD
Chinese Yuan → Fijian Dollar
1 CNY = 0.334748 FJD(1 FJD = 2.98732 CNY)
Currency converter
1 CNY =
0.33475 FJD
CNY to FJD: last 30 days
Over the last 30 days, 1 CNY traded between 0.32606 and 0.33482 FJD, averaging 0.33001 FJD. The CNY/FJD rate is up 2.66% since 2026-08-28.
- 30-day high
- 0.33482
- 2026-09-18
- 30-day low
- 0.32606
- 2026-08-28
- 30-day average
- 0.33001
- Days with data: 30
- 30-day change
- +2.66%
- since 2026-08-28
0.33482
0.326062026-08-28 → 2026-09-26
| Date | 1 CNY in FJD | Daily change |
|---|---|---|
| 2026-09-26 | 0.33475 | 0.00% |
| 2026-09-25 | 0.33475 | +0.28% |
| 2026-09-24 | 0.33382 | +0.08% |
| 2026-09-23 | 0.33354 | -0.18% |
| 2026-09-22 | 0.33415 | +0.74% |
| 2026-09-21 | 0.33171 | +0.26% |
| 2026-09-20 | 0.33084 | +0.00% |
| 2026-09-19 | 0.33084 | -1.19% |
| 2026-09-18 | 0.33482 | +0.57% |
| 2026-09-17 | 0.33291 | +0.90% |
| 2026-09-16 | 0.32994 | +0.09% |
| 2026-09-15 | 0.32965 | +0.07% |
| 2026-09-14 | 0.32943 | -0.34% |
| 2026-09-13 | 0.33055 | +0.20% |
| 2026-09-12 | 0.32989 | -0.33% |
| Date | 1 CNY in FJD | Daily change |
|---|---|---|
| 2026-09-11 | 0.33097 | +0.48% |
| 2026-09-10 | 0.32939 | +0.43% |
| 2026-09-09 | 0.32797 | +0.19% |
| 2026-09-08 | 0.32735 | -0.14% |
| 2026-09-07 | 0.32782 | -0.63% |
| 2026-09-06 | 0.32989 | +0.48% |
| 2026-09-05 | 0.32829 | +0.41% |
| 2026-09-04 | 0.32696 | -0.19% |
| 2026-09-03 | 0.32758 | -0.19% |
| 2026-09-02 | 0.32822 | +0.37% |
| 2026-09-01 | 0.32702 | -0.02% |
| 2026-08-31 | 0.3271 | +0.08% |
| 2026-08-30 | 0.32685 | -0.09% |
| 2026-08-29 | 0.32715 | +0.33% |
| 2026-08-28 | 0.32606 | — |
CNY to FJD conversion table
1 CNY0.33475 FJD
5 CNY1.6737 FJD
10 CNY3.3475 FJD
25 CNY8.3687 FJD
50 CNY16.7374 FJD
100 CNY33.4748 FJD
500 CNY167.3741 FJD
1,000 CNY334.7482 FJD
5,000 CNY1,673.7408 FJD
10,000 CNY3,347.4816 FJD
Get the CNY/FJD rate in your app
One GET request returns the latest CNY → FJD 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/FJD"fetch('https://rate-api.com/api/v1/pair/CNY/FJD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CNY = ${data.rate} FJD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CNY/FJD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CNY = {data['rate']} FJD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CNY/FJD');
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']} FJD\n";Example response
{
"success": true,
"pair": {
"from": "CNY",
"to": "FJD"
},
"rate": 0.3347,
"timestamp": 1790429449,
"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
FJD to CNYFijian Dollar → Chinese Yuan2.9873Convert CNY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.