💰 Finance

Haiti Net Salary Calculator

Free haiti net salary calculator — instant accurate results with step-by-step breakdown. No signup required.

⚡ Free to use 📱 Mobile friendly 🕒 Updated: June 06, 2026
🧮 Haiti Net Salary Calculator
function calculate() { const gross = parseFloat(document.getElementById("i1").value); const marital = document.getElementById("i2").value; const dependents = parseInt(document.getElementById("i3").value) || 0; const regime = document.getElementById("i4").value; if (!gross || gross < 0) { showResult("—", "Please enter a valid gross salary", [{"label":"Status","value":"Invalid input","cls":"red"}]); document.getElementById("breakdown-wrap").innerHTML = ""; return; } // Haiti tax brackets (2024 simplified) - progressive rates const annualGross = gross * 12; let taxAnnual = 0; let taxableIncome = annualGross; // Standard deduction for employed const standardDeduction = regime === "standard" ? 60000 : 0; // HTG // Personal exemption let personalExemption = 30000; if (marital === "married") personalExemption += 15000; personalExemption += dependents * 10000; const totalDeductions = standardDeduction + personalExemption; taxableIncome = Math.max(0, annualGross - totalDeductions); // Progressive tax brackets (simplified Haiti rates) if (taxableIncome <= 0) { taxAnnual = 0; } else if (taxableIncome <= 150000) { taxAnnual = taxableIncome * 0.10; } else if (taxableIncome <= 300000) { taxAnnual = 150000 * 0.10 + (taxableIncome - 150000) * 0.15; } else if (taxableIncome <= 600000) { taxAnnual = 150000 * 0.10 + 150000 * 0.15 + (taxableIncome - 300000) * 0.20; } else if (taxableIncome <= 1200000) { taxAnnual = 150000 * 0.10 + 150000 * 0.15 + 300000 * 0.20 + (taxableIncome - 600000) * 0.25; } else { taxAnnual = 150000 * 0.10 + 150000 * 0.15 + 300000 * 0.20 + 600000 * 0.25 + (taxableIncome - 1200000) * 0.30; } const monthlyTax = taxAnnual / 12; // Social contributions (approximate Haiti rates) const socialSecurity = gross * 0.06; // 6% approximate const healthInsurance = gross * 0.03; // 3% approximate const professionalTax = regime === "standard" ? gross * 0.01 : 0; // 1% for employed const totalDeductionsMonthly = monthlyTax + socialSecurity + healthInsurance + professionalTax; const netSalary = gross - totalDeductionsMonthly; const taxRate = gross > 0 ? ((totalDeductionsMonthly / gross) * 100) : 0; const effectiveTaxRate = gross > 0 ? ((monthlyTax / gross) * 100) : 0; let primaryLabel = "Net Monthly Salary"; let primarySub = "After all deductions"; let primaryCls = netSalary > gross * 0.7 ? "green" : netSalary > gross * 0.5 ? "yellow" : "red"; const gridItems = [ {"label":"Gross Salary","value":"$" + gross.toLocaleString('en-US', {minimumFractionDigits:2, maximumFractionDigits:2}), "cls":"green"}, {"label":"Income Tax","value":"$" + monthlyTax.toLocaleString('en-US', {minimumFractionDigits:2, maximumFractionDigits:2}), "cls": monthlyTax > 0 ? "yellow" : "green"}, {"label":"Social Security (6%)","value":"$" + socialSecurity.toLocaleString('en-US', {minimumFractionDigits:2, maximumFractionDigits:2}), "cls":"yellow"}, {"label":"Health Insurance (3%)","value":"$" + healthInsurance.toLocaleString('en-US', {minimumFractionDigits:2, maximumFractionDigits:2}), "cls":"yellow"}, {"label":"Professional Tax","value":"$" + professionalTax.toLocaleString('en-US', {minimumFractionDigits:2, maximumFractionDigits:2}), "cls":"yellow"}, {"label":"Total Deductions","value":"$" + totalDeductionsMonthly.toLocaleString('en-US', {minimumFractionDigits:2, maximumFractionDigits:2}), "cls":"red"}, {"label":"Effective Tax Rate","value": effectiveTaxRate.toFixed(2) + "%", "cls": effectiveTaxRate > 25 ? "red" : effectiveTaxRate > 10 ? "yellow" : "green"}, {"label":"Net Take-Home","value":"$" + netSalary.toLocaleString('en-US', {minimumFractionDigits:2, maximumFractionDigits:2}), "cls": netSalary > gross * 0.7 ? "green" : netSalary > gross * 0.5 ? "yellow" : "red"} ]; showResult(netSalary.toLocaleString('en-US', {minimumFractionDigits:2, maximumFractionDigits:2}) + " HTG", primaryLabel, gridItems); // Breakdown table let breakdownHTML = `

📊 Detailed Tax Breakdown

CategoryAnnual (HTG)Monthly (HTG)% of Gross
Gross Salary $${annualGross.toLocaleString('en-US', {minimumFractionDigits:2, maximumFractionDigits:2})} $${gross.toLocaleString('en-US', {minimumFractionDigits:2, maximumFractionDigits:2})} 100%
Standard Deduction $${standardDeduction.toLocaleString('en-US', {minimumFractionDigits:2, maximumFractionDigits:2})} $${(standardDeduction/12).toLocaleString('en-US', {minimumFractionDigits:2, maximumFractionDigits:2})} ${gross > 0 ? ((standardDeduction/annualGross)*100).toFixed(2) : "0.00"}%
Personal Exemption $${personalExemption.toLocaleString('en-US', {minimumFractionDigits:2, maximumFractionDigits:2})} $${(personalExemption/12).toLocaleString('en-US', {minimumFractionDigits:2, maximumFractionDigits:2})} ${gross > 0 ? ((personalExemption/annualGross)*100).toFixed(2) : "0.00"}%
Taxable Income $${taxableIncome.toLocaleString('en-US', {minimumFractionDigits:2, maximumFractionDigits:2})} $${(taxableIncome/12).toLocaleString('en-US', {minimumFractionDigits:2, maximumFractionDigits:2})} ${gross > 0 ? ((taxableIncome/annualGross)*100).toFixed(2) : "0.00"}%
Income Tax $${taxAnnual.toLocaleString('en-US', {minimumFractionDigits:2, maximumFractionDigits:2})} $${monthlyTax.toLocaleString('en-US', {minimumFractionDigits:2, maximumFractionDigits:2})} ${gross > 0 ? ((taxAnnual/annualGross)*100).toFixed(2) : "0.00"}%
Net Annual Income $${(annualGross - taxAnnual - socialSecurity*12 - healthInsurance*12 - professionalTax*12).toLocaleString('en-US', {minimumFractionDigits:2, maximumFractionDigits:2})} $${netSalary.toLocaleString('en-US', {minimumFractionDigits:2, maximumFractionDigits:2})} ${gross > 0 ? ((netSalary/gross)*100).toFixed(2) : "0.00"}%

📋 Deduction Summary

Deduction TypeRateMonthly AmountStatus
Income Tax ${effectiveTaxRate.toFixed(2)}% $${monthlyTax.toLocaleString('en-US', {minimumFractionDigits:2, maximumFractionDigits:2})} ${monthlyTax > gross * 0.2 ? 'High' : monthlyTax > gross * 0.1 ? 'Moderate' : 'Low'}
Social Security 6.00% $${socialSecurity.toLocaleString('en-US', {minimumFractionDigits:2, maximumFractionDigits:2})} Mandatory
Health Insurance 3.00% $${healthInsurance.toLocaleString('en-US', {minimumFractionDigits:2, maximumFractionDigits:2})} Mandatory
Professional Tax ${regime === "standard" ? "1.00%" : "0.00%"} $${professionalTax.toLocaleString('en-US', {minimumFractionDigits:2, maximumFractionDigits:2})} ${regime === "standard" ? "Applicable" : "Exempt"}
Net Take Home ${(100 - taxRate).toFixed(2)}% $${netSalary.toLocaleString('en-US', {minimumFractionDigits:
📊 Salary Breakdown in Haiti: Gross vs Net After Deductions

What is Haiti Net Salary Calculator?

A Haiti Net Salary Calculator is a specialized financial tool designed to instantly compute an employee’s take-home pay after all mandatory deductions are applied under Haitian labor law. Unlike generic salary calculators, this tool is specifically calibrated to handle Haiti’s unique tax brackets, social security contributions (OFATMA and ONP), and employer/employee cost-sharing structures. For anyone earning a salary in Haiti—whether you are a local professional, a foreign contractor, or an employer managing payroll—understanding your net income is critical for budgeting, contract negotiations, and tax compliance.

This calculator is used by employees to verify their payslips, by HR professionals to estimate payroll costs, and by freelancers to set hourly or monthly rates. It matters because Haiti’s tax system includes progressive income taxes, a solidarity fund contribution, and multiple social security deductions that can significantly reduce gross pay. Without accurate calculation, workers risk overpaying taxes or employers may underbudget for payroll liabilities.

This free online tool provides instant, accurate results with a clear breakdown of every deduction, from the Impôt sur le Revenu des Personnes Physiques (IRPP) to the Caisse d’Assistance Sociale (CAS) contributions. No signup or personal data is required, making it a safe and accessible resource for anyone navigating Haiti’s salary structure.

How to Use This Haiti Net Salary Calculator

Using the Haiti Net Salary Calculator is straightforward, even if you are unfamiliar with Haitian payroll regulations. The interface is designed for quick input and immediate results, requiring only your gross salary and a few optional details for maximum accuracy. Follow these five simple steps to get your precise net salary and a full deduction breakdown.

  1. Enter Your Gross Monthly Salary: In the first field, type your total gross salary as it appears on your employment contract or payslip before any deductions. This should be your base salary plus any fixed allowances (e.g., transportation, housing, or meal allowances) that are subject to taxation. For example, if your contract states 50,000 Haitian Gourdes (HTG) per month before taxes, enter “50000.” The calculator accepts both whole numbers and decimals.
  2. Select Your Payment Frequency: Choose whether you are paid monthly, bi-weekly, or weekly from the dropdown menu. This is critical because Haiti’s tax brackets and social security thresholds are calculated on a monthly basis. If you are paid weekly, the calculator will automatically convert your income to a monthly equivalent to apply the correct deductions, then convert the net result back to your chosen frequency.
  3. Indicate Your Employment Status: Select “Employee” or “Employer” to determine which side of the calculation you need. Employees see their net take-home pay after all personal deductions. Employers see the total cost of employment, including the employer’s share of OFATMA (health insurance) and ONP (pension) contributions, plus any payroll taxes. If you are self-employed, choose “Employee” and the calculator will treat you as a sole contributor.
  4. Add Optional Deductions (Optional): If you have voluntary deductions such as union dues, loan repayments, or additional pension savings, enter them in the “Additional Deductions” field. These are subtracted after mandatory taxes and social security, giving you the most accurate net figure. Leave this field at zero if you have no such deductions.
  5. Click “Calculate” and Review the Breakdown: Press the green “Calculate” button. Within seconds, the tool displays your net salary in HTG, followed by a detailed breakdown showing gross pay, total deductions, and each individual deduction line: IRPP (income tax), OFATMA (health), ONP (pension), CAS (social assistance), and the Fonds de Solidarité (solidarity fund). A color-coded pie chart visually represents where your salary goes.

For best results, always use your latest pay stub to verify gross salary figures. If you receive non-cash benefits (e.g., company car or housing), these are generally not included in gross salary for deduction purposes unless your employer reports them as taxable income. The calculator also includes a “Reset” button to clear all fields and start a new calculation instantly.

Formula and Calculation Method

The Haiti Net Salary Calculator uses a multi-step formula that mirrors the official payroll calculation method mandated by the Direction Générale des Impôts (DGI) and the Institut Haïtien de Statistique et d’Informatique (IHSI). The formula accounts for progressive taxation, social security contributions, and the solidarity fund, all calculated on a monthly basis. The core logic is: Net Salary = Gross Salary – (Income Tax + OFATMA + ONP + CAS + Solidarity Fund + Additional Deductions).

Formula
Net Salary = Gross Salary – [IRPP + OFATMA + ONP + CAS + Solidarity Fund + Other Deductions]

Each variable in this formula is calculated independently using specific rates and thresholds defined by Haitian law. The IRPP (income tax) is progressive, meaning higher portions of your salary are taxed at higher rates. Social security contributions are fixed percentages of gross salary up to a cap. The solidarity fund applies only to salaries above a certain threshold. Understanding these variables is essential for interpreting your results.

Understanding the Variables

Gross Salary: The total monthly compensation before any deductions, including base pay, allowances, commissions, and bonuses. This is the starting point for all calculations. In Haiti, gross salary typically excludes employer-paid benefits like health insurance premiums, but includes cash allowances that are subject to tax.

IRPP (Impôt sur le Revenu des Personnes Physiques): This is Haiti’s progressive personal income tax. As of the latest tax code, the first 30,000 HTG of monthly income is tax-exempt. From 30,001 to 60,000 HTG, the rate is 10%. From 60,001 to 120,000 HTG, the rate is 15%. Above 120,000 HTG, the rate is 20%. The calculator applies these brackets sequentially, not on the entire salary. For example, if you earn 80,000 HTG, only the portion above 60,000 HTG is taxed at 15%.

OFATMA (Office d’Assurance du Travail, de la Maladie et de la Maternité): This is Haiti’s mandatory health and maternity insurance. The employee contributes 1% of gross salary, and the employer contributes 2%. The calculator shows the employee’s portion only when in “Employee” mode. There is no cap on this contribution—it applies to the full gross salary.

ONP (Office National de la Pension): This is the national pension fund. The employee contributes 1.5% of gross salary, and the employer contributes 3%. Like OFATMA, this is calculated on the full gross salary with no cap. The calculator displays the employee’s share.

CAS (Caisse d’Assistance Sociale): This is a social assistance fund for low-income workers. The contribution is a flat 0.5% of gross salary for both employee and employer. It applies to all salaries, with no exemption threshold.

Fonds de Solidarité (Solidarity Fund): This is an additional tax on higher incomes. It applies only to monthly gross salaries exceeding 100,000 HTG. The rate is 2% on the portion above 100,000 HTG. For example, if you earn 150,000 HTG, the solidarity fund is 2% of 50,000 HTG, or 1,000 HTG.

Step-by-Step Calculation

To calculate net salary manually, follow these steps:

Step 1: Determine your gross monthly salary. For example, 80,000 HTG.
Step 2: Calculate IRPP. First, subtract the exempt amount: 80,000 – 30,000 = 50,000 HTG taxable. Apply brackets: 30,001 to 60,000 (30,000 HTG at 10% = 3,000 HTG) + 60,001 to 80,000 (20,000 HTG at 15% = 3,000 HTG). Total IRPP = 6,000 HTG.
Step 3: Calculate OFATMA: 1% of 80,000 = 800 HTG.
Step 4: Calculate ONP: 1.5% of 80,000 = 1,200 HTG.
Step 5: Calculate CAS: 0.5% of 80,000 = 400 HTG.
Step 6: Check solidarity fund: 80,000 is below 100,000, so 0 HTG.
Step 7: Sum all deductions: 6,000 + 800 + 1,200 + 400 = 8,400 HTG.
Step 8: Net salary = 80,000 – 8,400 = 71,600 HTG.

Example Calculation

To illustrate the power of the Haiti Net Salary Calculator, consider a realistic scenario. Marie, a mid-level accountant in Port-au-Prince, earns a gross monthly salary of 95,000 HTG. She receives a housing allowance of 5,000 HTG included in that figure. She is paid monthly and has no additional deductions. She wants to know her exact take-home pay to plan her rent and living expenses.

Example Scenario: Marie’s gross monthly salary is 95,000 HTG. She is an employee, paid monthly, with no union dues or loan repayments. She wants to calculate her net salary after all mandatory Haitian deductions.

Step-by-step calculation using the formula:
Gross Salary: 95,000 HTG
IRPP: Exempt 30,000 HTG → 65,000 HTG taxable. First bracket (30,001-60,000): 30,000 HTG × 10% = 3,000 HTG. Second bracket (60,001-95,000): 35,000 HTG × 15% = 5,250 HTG. Total IRPP = 8,250 HTG.
OFATMA: 1% × 95,000 = 950 HTG.
ONP: 1.5% × 95,000 = 1,425 HTG.
CAS: 0.5% × 95,000 = 475 HTG.
Solidarity Fund: 95,000 is less than 100,000, so 0 HTG.
Total Deductions: 8,250 + 950 + 1,425 + 475 = 11,100 HTG.
Net Salary: 95,000 – 11,100 = 83,900 HTG.

Marie’s net take-home pay is 83,900 HTG per month. This means she loses approximately 11.7% of her gross salary to taxes and social security. With this information, she can confidently budget for her apartment rental (typically 15,000-25,000 HTG in Port-au-Prince), utilities, and savings. She can also compare this to her payslip to ensure her employer is deducting correctly.

Another Example

Consider Jean-Pierre, a senior engineer at a construction firm earning 180,000 HTG gross per month. He is paid bi-weekly and has a voluntary loan repayment of 5,000 HTG per month. Select “Bi-weekly” in the calculator, enter 90,000 HTG as bi-weekly gross (180,000/2), and add 2,500 HTG as additional deductions per bi-weekly period (5,000/2). The calculator converts to monthly: gross 180,000 HTG. IRPP: Exempt 30,000 → 150,000 taxable. Brackets: 30,000 × 10% = 3,000; 60,000 × 15% = 9,000; 60,000 × 20% = 12,000 (since 150,000 – 90,000 = 60,000). Total IRPP = 24,000 HTG. OFATMA: 1,800 HTG. ONP: 2,700 HTG. CAS: 900 HTG. Solidarity Fund: 180,000 – 100,000 = 80,000 × 2% = 1,600 HTG. Total deductions: 24,000 + 1,800 + 2,700 + 900 + 1,600 = 31,000 HTG. Additional deductions: 5,000 HTG. Net salary: 180,000 – 36,000 = 144,000 HTG per month, or 72,000 HTG bi-weekly. This shows how higher earners face a significantly higher effective tax rate due to the solidarity fund and progressive brackets.

Benefits of Using Haiti Net Salary Calculator

Using a dedicated Haiti Net Salary Calculator offers numerous advantages over manual calculations or generic international tools. It saves time, eliminates human error, and provides transparency into Haiti’s complex deduction system. Whether you are an employee, employer, or freelancer, this tool empowers you with accurate financial data for better decision-making.

  • Instant Accuracy and Error Prevention: Manual calculations using Haiti’s progressive tax brackets and multiple social security rates are prone to mistakes, especially when dealing with irregular pay frequencies or additional deductions. This calculator automates the entire process, applying the exact rates and thresholds as defined by the DGI. It eliminates arithmetic errors that could lead to overpaying taxes or under-budgeting for payroll. For example, forgetting to apply the solidarity fund on incomes above 100,000 HTG is a common mistake that this tool automatically avoids.
  • Transparent Deduction Breakdown: Unlike a simple payslip that shows only the final net amount, this calculator provides a line-by-line breakdown of every deduction. You can see exactly how much goes to IRPP, OFATMA, ONP, CAS, and the solidarity fund. This transparency helps employees verify their employer’s compliance and helps employers audit their payroll processes. It also aids in financial planning by showing exactly which deductions consume the largest portion of gross income.
  • Time Savings for HR and Payroll Professionals: For businesses managing multiple employees, manually calculating net salaries for each worker is time-consuming and inefficient. This calculator allows HR managers to quickly run scenarios for different salary levels, allowances, and payment frequencies. It can be used to estimate total payroll costs, including employer contributions, in seconds. This is especially valuable during budget planning or when negotiating salary packages with new hires.
  • Empowers Freelancers and Self-Employed Workers: Freelancers in Haiti often struggle to set their rates because they must account for both their own deductions and the fact that they bear the full cost of social security (both employee and employer portions). This calculator allows them to input their desired net income and work backward to find the gross rate they need to charge clients. For example, a freelancer wanting 70,000 HTG net per month can experiment with gross amounts until the net matches their goal.
  • Supports Financial Planning and Salary Negotiations: Job seekers and employees can use this tool to evaluate job offers from different companies. By entering the gross salary from an offer, they can instantly see the net take-home pay and compare it to their current salary or other offers. This is crucial in Haiti, where gross salary figures can be misleading due to the significant impact of progressive taxes and social security. It also helps in negotiating for higher gross pay to achieve a desired net income.

Tips and Tricks for Best Results

To get the most accurate and useful results from the Haiti Net Salary Calculator, follow these expert tips. Understanding the nuances of Haitian payroll can help you avoid common pitfalls and make the tool work for your specific situation. Whether you are a first-time user or a seasoned professional, these insights will enhance your experience.

Pro Tips