Convert HKD to INR
Hong Kong Dollar → Indian Rupee
1 HKD = 12.215384 INR(1 INR = 0.081864 HKD)
Currency converter
1 HKD =
12.2154 INR
HKD to INR: last 30 days
Over the last 30 days, 1 HKD traded between 12.0501 and 12.2356 INR, averaging 12.163 INR. The HKD/INR rate is up 0.39% since 2026-08-28.
- 30-day high
- 12.2356
- 2026-09-24
- 30-day low
- 12.0501
- 2026-09-03
- 30-day average
- 12.163
- Days with data: 30
- 30-day change
- +0.39%
- since 2026-08-28
12.2356
12.05012026-08-28 → 2026-09-26
| Date | 1 HKD in INR | Daily change |
|---|---|---|
| 2026-09-26 | 12.2154 | 0.00% |
| 2026-09-25 | 12.2154 | -0.16% |
| 2026-09-24 | 12.2356 | +0.24% |
| 2026-09-23 | 12.2059 | +0.15% |
| 2026-09-22 | 12.1873 | -0.21% |
| 2026-09-21 | 12.2135 | -0.07% |
| 2026-09-20 | 12.222 | 0.00% |
| 2026-09-19 | 12.222 | 0.00% |
| 2026-09-18 | 12.222 | -0.06% |
| 2026-09-17 | 12.2291 | -0.02% |
| 2026-09-16 | 12.2322 | -0.01% |
| 2026-09-15 | 12.2328 | +0.40% |
| 2026-09-14 | 12.1835 | -0.02% |
| 2026-09-13 | 12.1857 | 0.00% |
| 2026-09-12 | 12.1857 | 0.00% |
| Date | 1 HKD in INR | Daily change |
|---|---|---|
| 2026-09-11 | 12.1857 | +0.12% |
| 2026-09-10 | 12.1716 | +0.36% |
| 2026-09-09 | 12.1278 | +0.28% |
| 2026-09-08 | 12.0938 | +0.35% |
| 2026-09-07 | 12.052 | +0.00% |
| 2026-09-06 | 12.0518 | 0.00% |
| 2026-09-05 | 12.0518 | 0.00% |
| 2026-09-04 | 12.0518 | +0.01% |
| 2026-09-03 | 12.0501 | -0.49% |
| 2026-09-02 | 12.1097 | +0.00% |
| 2026-09-01 | 12.1094 | -0.27% |
| 2026-08-31 | 12.1423 | -0.21% |
| 2026-08-30 | 12.1677 | 0.00% |
| 2026-08-29 | 12.1677 | 0.00% |
| 2026-08-28 | 12.1677 | — |
HKD to INR conversion table
1 HKD12.2154 INR
5 HKD61.0769 INR
10 HKD122.1538 INR
25 HKD305.3846 INR
50 HKD610.7692 INR
100 HKD1,221.5384 INR
500 HKD6,107.6919 INR
1,000 HKD12,215.384 INR
5,000 HKD61,076.919 INR
10,000 HKD122,153.84 INR
Get the HKD/INR rate in your app
One GET request returns the latest HKD → INR 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/HKD/INR"fetch('https://rate-api.com/api/v1/pair/HKD/INR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 HKD = ${data.rate} INR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/HKD/INR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 HKD = {data['rate']} INR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/HKD/INR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 HKD = {$data['rate']} INR\n";Example response
{
"success": true,
"pair": {
"from": "HKD",
"to": "INR"
},
"rate": 12.2154,
"timestamp": 1790432211,
"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
INR to HKDIndian Rupee → Hong Kong Dollar0.081864Convert HKD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.