Convert CHF to VND
Swiss Franc → Vietnamese Dong
1 CHF = 31,366.404 VND(1 VND = 0.0000318812 CHF)
Currency converter
1 CHF =
31,366.404 VND
CHF to VND: last 30 days
Over the last 30 days, 1 CHF traded between 31,366.404 and 32,471.006 VND, averaging 31,894.808 VND. The CHF/VND rate is down 3.17% since 2026-08-28.
- 30-day high
- 32,471.006
- 2026-08-29
- 30-day low
- 31,366.404
- 2026-09-25
- 30-day average
- 31,894.808
- Days with data: 30
- 30-day change
- -3.17%
- since 2026-08-28
32,471.006
31,366.4042026-08-28 → 2026-09-26
| Date | 1 CHF in VND | Daily change |
|---|---|---|
| 2026-09-26 | 31,366.404 | 0.00% |
| 2026-09-25 | 31,366.404 | -0.19% |
| 2026-09-24 | 31,425.464 | -0.37% |
| 2026-09-23 | 31,542.945 | -0.48% |
| 2026-09-22 | 31,694.308 | +0.05% |
| 2026-09-21 | 31,678.045 | +0.53% |
| 2026-09-20 | 31,510.808 | +0.06% |
| 2026-09-19 | 31,492.289 | +0.02% |
| 2026-09-18 | 31,486.696 | -0.13% |
| 2026-09-17 | 31,526.494 | -0.68% |
| 2026-09-16 | 31,742.542 | -0.23% |
| 2026-09-15 | 31,814.935 | +0.10% |
| 2026-09-14 | 31,782.121 | -0.05% |
| 2026-09-13 | 31,797.987 | +0.35% |
| 2026-09-12 | 31,687.23 | -0.30% |
| Date | 1 CHF in VND | Daily change |
|---|---|---|
| 2026-09-11 | 31,783.426 | -0.46% |
| 2026-09-10 | 31,931.131 | -0.78% |
| 2026-09-09 | 32,182.646 | +0.44% |
| 2026-09-08 | 32,040.307 | -0.49% |
| 2026-09-07 | 32,197.397 | -0.08% |
| 2026-09-06 | 32,224.708 | +0.03% |
| 2026-09-05 | 32,214.088 | -0.06% |
| 2026-09-04 | 32,234.11 | -0.22% |
| 2026-09-03 | 32,304.557 | +0.77% |
| 2026-09-02 | 32,058.638 | -0.44% |
| 2026-09-01 | 32,201.762 | -0.20% |
| 2026-08-31 | 32,264.941 | -0.50% |
| 2026-08-30 | 32,426.254 | -0.14% |
| 2026-08-29 | 32,471.006 | +0.24% |
| 2026-08-28 | 32,394.588 | — |
CHF to VND conversion table
1 CHF31,366.404 VND
5 CHF156,832.02 VND
10 CHF313,664.04 VND
25 CHF784,160.11 VND
50 CHF1,568,320.2 VND
100 CHF3,136,640.4 VND
500 CHF15,683,202 VND
1,000 CHF31,366,404 VND
5,000 CHF156,832,022 VND
10,000 CHF313,664,045 VND
Get the CHF/VND rate in your app
One GET request returns the latest CHF → VND 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/CHF/VND"fetch('https://rate-api.com/api/v1/pair/CHF/VND', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CHF = ${data.rate} VND`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CHF/VND",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CHF = {data['rate']} VND")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CHF/VND');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 CHF = {$data['rate']} VND\n";Example response
{
"success": true,
"pair": {
"from": "CHF",
"to": "VND"
},
"rate": 31366.4045,
"timestamp": 1790429332,
"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
VND to CHFVietnamese Dong → Swiss Franc0.000031881Convert CHF to other currencies
Convert other currencies to VND
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.