Convert AUD to HUF
Australian Dollar → Hungarian Forint
1 AUD = 225.20345 HUF(1 HUF = 0.00444043 AUD)
Currency converter
1 AUD =
225.2035 HUF
AUD to HUF: last 30 days
Over the last 30 days, 1 AUD traded between 224.2819 and 227.55 HUF, averaging 225.6474 HUF. The AUD/HUF rate is down 0.10% since 2026-08-28.
- 30-day high
- 227.55
- 2026-09-03
- 30-day low
- 224.2819
- 2026-09-22
- 30-day average
- 225.6474
- Days with data: 30
- 30-day change
- -0.10%
- since 2026-08-28
227.55
224.28192026-08-28 → 2026-09-26
| Date | 1 AUD in HUF | Daily change |
|---|---|---|
| 2026-09-26 | 225.2035 | 0.00% |
| 2026-09-25 | 225.2035 | -0.50% |
| 2026-09-24 | 226.3399 | +0.32% |
| 2026-09-23 | 225.6225 | +0.60% |
| 2026-09-22 | 224.2819 | -0.37% |
| 2026-09-21 | 225.1249 | -0.53% |
| 2026-09-20 | 226.3225 | 0.00% |
| 2026-09-19 | 226.3225 | 0.00% |
| 2026-09-18 | 226.3225 | +0.63% |
| 2026-09-17 | 224.9129 | -0.17% |
| 2026-09-16 | 225.3049 | -0.32% |
| 2026-09-15 | 226.0296 | +0.24% |
| 2026-09-14 | 225.4955 | -0.00% |
| 2026-09-13 | 225.5057 | 0.00% |
| 2026-09-12 | 225.5057 | 0.00% |
| Date | 1 AUD in HUF | Daily change |
|---|---|---|
| 2026-09-11 | 225.5057 | -0.05% |
| 2026-09-10 | 225.6143 | -0.02% |
| 2026-09-09 | 225.6701 | -0.18% |
| 2026-09-08 | 226.0804 | +0.28% |
| 2026-09-07 | 225.4599 | +0.13% |
| 2026-09-06 | 225.1693 | 0.00% |
| 2026-09-05 | 225.1693 | 0.00% |
| 2026-09-04 | 225.1693 | -1.05% |
| 2026-09-03 | 227.55 | +0.11% |
| 2026-09-02 | 227.3033 | +0.60% |
| 2026-09-01 | 225.9516 | +0.41% |
| 2026-08-31 | 225.0233 | -0.18% |
| 2026-08-30 | 225.4191 | 0.00% |
| 2026-08-29 | 225.4191 | 0.00% |
| 2026-08-28 | 225.4191 | — |
AUD to HUF conversion table
1 AUD225.2035 HUF
5 AUD1,126.0173 HUF
10 AUD2,252.0345 HUF
25 AUD5,630.0863 HUF
50 AUD11,260.173 HUF
100 AUD22,520.345 HUF
500 AUD112,601.73 HUF
1,000 AUD225,203.45 HUF
5,000 AUD1,126,017.3 HUF
10,000 AUD2,252,034.5 HUF
Get the AUD/HUF rate in your app
One GET request returns the latest AUD → HUF 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/AUD/HUF"fetch('https://rate-api.com/api/v1/pair/AUD/HUF', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} HUF`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/HUF",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} HUF")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/HUF');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 AUD = {$data['rate']} HUF\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "HUF"
},
"rate": 225.2035,
"timestamp": 1790429369,
"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
HUF to AUDHungarian Forint → Australian Dollar0.0044404Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.