Skip to main content
The HRA (House Rent Allowance) Calculator helps employees determine the tax-exempt portion of their HRA, enabling them to optimize their tax savings legally.

Features

Instant Calculation

Get results immediately as users enter their salary details.

Metro/Non-Metro Support

Automatically applies the correct percentage based on city type.

Detailed Breakdown

Shows all three components so users understand the calculation.

Copy Results

Users can easily copy the results for their records.

Integration

Web (iframe)

<iframe
  src="https://tools.quicko.com/hra-calculator"
  width="100%"
  height="500"
  frameborder="0"
  allow="clipboard-write"
></iframe>
With customization:
<iframe
  id="hra-calculator"
  width="100%"
  height="500"
  frameborder="0"
  allow="clipboard-write"
></iframe>

<script>
  const theme = {
    mode: "dark",
    seed: "#006AD4"
  };
  
  const base64Theme = btoa(encodeURIComponent(JSON.stringify(theme)));
  document.getElementById('hra-calculator').src = 
    `https://tools.quicko.com/hra-calculator?theme=${encodedOptions}`;
</script>

Mobile (WebView)

import WebKit

let theme: [String: Any] = [
    "mode": "light",
    "seed": "#006AD4"
]

if let jsonData = try? JSONSerialization.data(withJSONObject: theme),
   let base64Theme = jsonData.base64EncodedString()
        .addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed) {
    let toolUrl = "https://tools.quicko.com/hra-calculator?theme=\(base64Theme)"
    webView.load(URLRequest(url: URL(string: toolUrl)!))
}

Input Fields

The HRA Calculator collects the following information:
FieldDescriptionRequired
Basic SalaryBasic salary amountYes
HRA ReceivedHRA component in salaryYes
Rent PaidRent paid for accommodationYes
Metro CityWhether the city is a metro (Mumbai, Delhi, Chennai, Kolkata)Yes

Output

The calculator displays:
  • Exempt HRA Amount – The tax-exempt portion of HRA
  • Taxable HRA Amount – The portion that will be taxed
  • Breakdown – All three calculation components for transparency

Use Cases

Content & Tax Guidance Websites

Enhance tax-related articles and guides by embedding an interactive HRA calculator.
Pre-calculate HRA exemption to streamline the tax filing process.
Provide employees with a tool to understand their salary components.

Demo

Powered byQuicko