Convert FJD to CNY
Fijian Dollar → Chinese Yuan
1 FJD = 2.98732 CNY(1 CNY = 0.334748 FJD)
Currency converter
1 FJD =
2.9873 CNY
FJD to CNY: last 30 days
Over the last 30 days, 1 FJD traded between 2.9867 and 3.0669 CNY, averaging 3.0304 CNY. The FJD/CNY rate is down 2.59% since 2026-08-28.
- 30-day high
- 3.0669
- 2026-08-28
- 30-day low
- 2.9867
- 2026-09-18
- 30-day average
- 3.0304
- Days with data: 30
- 30-day change
- -2.59%
- since 2026-08-28
3.0669
2.98672026-08-28 → 2026-09-26
| Date | 1 FJD in CNY | Daily change |
|---|---|---|
| 2026-09-26 | 2.9873 | 0.00% |
| 2026-09-25 | 2.9873 | -0.28% |
| 2026-09-24 | 2.9956 | -0.08% |
| 2026-09-23 | 2.9982 | +0.18% |
| 2026-09-22 | 2.9926 | -0.73% |
| 2026-09-21 | 3.0147 | -0.26% |
| 2026-09-20 | 3.0226 | -0.00% |
| 2026-09-19 | 3.0226 | +1.20% |
| 2026-09-18 | 2.9867 | -0.57% |
| 2026-09-17 | 3.0038 | -0.89% |
| 2026-09-16 | 3.0309 | -0.09% |
| 2026-09-15 | 3.0335 | -0.07% |
| 2026-09-14 | 3.0356 | +0.34% |
| 2026-09-13 | 3.0253 | -0.20% |
| 2026-09-12 | 3.0314 | +0.33% |
| Date | 1 FJD in CNY | Daily change |
|---|---|---|
| 2026-09-11 | 3.0214 | -0.48% |
| 2026-09-10 | 3.036 | -0.43% |
| 2026-09-09 | 3.049 | -0.19% |
| 2026-09-08 | 3.0548 | +0.14% |
| 2026-09-07 | 3.0504 | +0.63% |
| 2026-09-06 | 3.0313 | -0.48% |
| 2026-09-05 | 3.046 | -0.41% |
| 2026-09-04 | 3.0584 | +0.19% |
| 2026-09-03 | 3.0527 | +0.19% |
| 2026-09-02 | 3.0468 | -0.37% |
| 2026-09-01 | 3.058 | +0.02% |
| 2026-08-31 | 3.0572 | -0.08% |
| 2026-08-30 | 3.0595 | +0.09% |
| 2026-08-29 | 3.0567 | -0.33% |
| 2026-08-28 | 3.0669 | — |
FJD to CNY conversion table
1 FJD2.9873 CNY
5 FJD14.9366 CNY
10 FJD29.8732 CNY
25 FJD74.683 CNY
50 FJD149.366 CNY
100 FJD298.732 CNY
500 FJD1,493.6602 CNY
1,000 FJD2,987.3204 CNY
5,000 FJD14,936.602 CNY
10,000 FJD29,873.204 CNY
Get the FJD/CNY rate in your app
One GET request returns the latest FJD → 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/FJD/CNY"fetch('https://rate-api.com/api/v1/pair/FJD/CNY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 FJD = ${data.rate} CNY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/FJD/CNY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 FJD = {data['rate']} CNY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/FJD/CNY');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 FJD = {$data['rate']} CNY\n";Example response
{
"success": true,
"pair": {
"from": "FJD",
"to": "CNY"
},
"rate": 2.9873,
"timestamp": 1790432101,
"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 FJDChinese Yuan → Fijian Dollar0.33475Convert FJD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.