Enter your details and click calculate to see your Hawaii tax breakdown.
Understanding Hawaii's Payroll Taxes
Living and working in Hawaii, often referred to as "Paradise Tax," involves understanding one of the highest state income tax systems in the United States. Hawaii uses a progressive tax system with rates that can climb as high as 11% for top earners.
Major Components of Your Hawaii Paycheck
Federal Income Tax: Progressive rates ranging from 10% to 37% based on your taxable income.
FICA (Social Security & Medicare): A combined 7.65% (6.2% for Social Security up to the annual limit and 1.45% for Medicare).
Hawaii State Income Tax: Hawaii has 12 tax brackets. This is significantly higher than most other states.
Hawaii TDI (Temporary Disability Insurance): Employers in Hawaii may require employees to contribute to TDI, though many cover the full cost. This calculator focuses on the mandatory tax withholdings.
Example: $75,000 Salary in Hawaii (Single Filer)
If you earn a gross salary of $75,000 per year in Hawaii, your pay breakdown might look like this (estimates based on 2024 tax rules):
Category
Annual Amount
Gross Pay
$75,000.00
Federal Income Tax (Est)
-$8,120.00
State Income Tax (HI)
-$5,185.00
FICA (Social Security & Medicare)
-$5,737.50
Estimated Net Pay
$55,957.50
How to Use This Hawaii Salary Calculator
1. Enter your gross pay per period (e.g., if you are paid every two weeks, enter your bi-weekly gross amount).
2. Select your filing frequency (Monthly, Bi-weekly, etc.).
3. Select your filing status as it appears on your HW-4 (Hawaii State Withholding) form.
4. View the "Take-Home Pay" result, which subtracts the estimated Hawaii state tax, federal tax, and FICA taxes.
function calculateHawaiiPaycheck() {
var gross = parseFloat(document.getElementById('grossPay').value);
var freq = parseFloat(document.getElementById('payFrequency').value);
var status = document.getElementById('filingStatus').value;
var allowances = parseInt(document.getElementById('stateAllowances').value) || 0;
if (isNaN(gross) || gross <= 0) {
alert("Please enter a valid gross pay amount.");
return;
}
var annualGross = gross * freq;
// FICA Calculation (2024)
var socialSecurity = Math.min(annualGross, 168600) * 0.062;
var medicare = annualGross * 0.0145;
var totalFica = socialSecurity + medicare;
// Federal Income Tax (Simplified 2024 Standard Deduction)
var fedDeduction = (status === 'married') ? 29200 : (status === 'head' ? 21900 : 14600);
var taxableFed = Math.max(0, annualGross – fedDeduction);
var fedTax = calculateFederalTax(taxableFed, status);
// Hawaii State Tax (Simplified 2024 – Hawaii uses allowances for personal exemptions)
// Hawaii exemption is $1,144 per allowance
// Hawaii Standard Deduction: Single $2,200, Married $4,400, Head of House $3,212
var hiDeduction = (status === 'married') ? 4400 : (status === 'head' ? 3212 : 2200);
var hiExemption = allowances * 1144;
var taxableHI = Math.max(0, annualGross – hiDeduction – hiExemption);
var stateTax = calculateHawaiiTax(taxableHI, status);
var annualNet = annualGross – totalFica – fedTax – stateTax;
var perPeriodFica = totalFica / freq;
var perPeriodFed = fedTax / freq;
var perPeriodState = stateTax / freq;
var perPeriodNet = annualNet / freq;
var outputHtml = '