Convert MYR to CHF
Malaysian Ringgit → Swiss Franc
1 MYR = 0.203311 CHF(1 CHF = 4.918581 MYR)
Currency converter
1 MYR =
0.20331 CHF
MYR to CHF: last 30 days
Over the last 30 days, 1 MYR traded between 0.1983 and 0.20331 CHF, averaging 0.20078 CHF. The MYR/CHF rate is up 1.77% since 2026-08-28.
- 30-day high
- 0.20331
- 2026-09-25
- 30-day low
- 0.1983
- 2026-09-09
- 30-day average
- 0.20078
- Days with data: 30
- 30-day change
- +1.77%
- since 2026-08-28
0.20331
0.19832026-08-28 → 2026-09-26
| Date | 1 MYR in CHF | Daily change |
|---|---|---|
| 2026-09-26 | 0.20331 | 0.00% |
| 2026-09-25 | 0.20331 | +0.38% |
| 2026-09-24 | 0.20253 | +0.42% |
| 2026-09-23 | 0.20169 | +0.28% |
| 2026-09-22 | 0.20113 | -0.16% |
| 2026-09-21 | 0.20145 | -0.44% |
| 2026-09-20 | 0.20234 | 0.00% |
| 2026-09-19 | 0.20234 | 0.00% |
| 2026-09-18 | 0.20234 | +0.59% |
| 2026-09-17 | 0.20114 | +0.37% |
| 2026-09-16 | 0.2004 | +0.10% |
| 2026-09-15 | 0.20019 | -0.06% |
| 2026-09-14 | 0.20031 | +0.01% |
| 2026-09-13 | 0.20029 | 0.00% |
| 2026-09-12 | 0.20029 | 0.00% |
| Date | 1 MYR in CHF | Daily change |
|---|---|---|
| 2026-09-11 | 0.20029 | +0.29% |
| 2026-09-10 | 0.19972 | +0.72% |
| 2026-09-09 | 0.1983 | -0.76% |
| 2026-09-08 | 0.19981 | -0.10% |
| 2026-09-07 | 0.20001 | -0.04% |
| 2026-09-06 | 0.20008 | 0.00% |
| 2026-09-05 | 0.20008 | 0.00% |
| 2026-09-04 | 0.20008 | +0.02% |
| 2026-09-03 | 0.20003 | -0.58% |
| 2026-09-02 | 0.2012 | +0.27% |
| 2026-09-01 | 0.20065 | -0.09% |
| 2026-08-31 | 0.20083 | +0.53% |
| 2026-08-30 | 0.19977 | 0.00% |
| 2026-08-29 | 0.19977 | 0.00% |
| 2026-08-28 | 0.19977 | — |
MYR to CHF conversion table
1 MYR0.20331 CHF
5 MYR1.0166 CHF
10 MYR2.0331 CHF
25 MYR5.0828 CHF
50 MYR10.1655 CHF
100 MYR20.3311 CHF
500 MYR101.6553 CHF
1,000 MYR203.3107 CHF
5,000 MYR1,016.5533 CHF
10,000 MYR2,033.1066 CHF
Get the MYR/CHF rate in your app
One GET request returns the latest MYR → CHF 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/MYR/CHF"fetch('https://rate-api.com/api/v1/pair/MYR/CHF', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 MYR = ${data.rate} CHF`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/MYR/CHF",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 MYR = {data['rate']} CHF")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/MYR/CHF');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 MYR = {$data['rate']} CHF\n";Example response
{
"success": true,
"pair": {
"from": "MYR",
"to": "CHF"
},
"rate": 0.2033,
"timestamp": 1790435212,
"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
CHF to MYRSwiss Franc → Malaysian Ringgit4.9186Convert MYR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.