Utah Paycheck Calculator

.calculator-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; background-color: #ffffff; border: 1px solid #e1e1e1; border-radius: 8px; color: #333; box-shadow: 0 4px 6px rgba(0,0,0,0.05); } .calculator-header { text-align: center; margin-bottom: 30px; } .input-group { margin-bottom: 20px; } .input-group label { display: block; font-weight: 600; margin-bottom: 8px; color: #2c3e50; } .input-group input, .input-group select { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; font-size: 16px; } .calculate-btn { width: 100%; padding: 15px; background-color: #0056b3; color: white; border: none; border-radius: 4px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background-color 0.2s; } .calculate-btn:hover { background-color: #004494; } .results-section { margin-top: 30px; padding: 20px; background-color: #f8f9fa; border-radius: 4px; display: none; } .result-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #dee2e6; } .result-row:last-child { border-bottom: none; font-weight: bold; font-size: 1.2em; color: #28a745; } .article-content { margin-top: 40px; line-height: 1.6; color: #444; } .article-content h2 { color: #2c3e50; border-bottom: 2px solid #eee; padding-bottom: 10px; } .article-content table { width: 100%; border-collapse: collapse; margin: 20px 0; } .article-content table th, .article-content table td { border: 1px solid #ddd; padding: 12px; text-align: left; } .article-content table th { background-color: #f2f2f2; }

Utah Paycheck & Take-Home Pay Calculator

Estimate your net pay after federal, state, and FICA taxes in the Beehive State.

Weekly Bi-weekly (Every 2 weeks) Semi-monthly (Twice a month) Monthly Annual Salary
Single Married Filing Jointly Head of Household

Estimated Paycheck Breakdown

Gross Pay (per period):
Federal Income Tax:
Social Security (6.2%):
Medicare (1.45%):
Utah State Tax (4.65%):
Estimated Take-Home Pay:

Understanding Your Utah Paycheck

Calculating your take-home pay in Utah requires navigating three distinct tax layers: Federal income tax, FICA (Federal Insurance Contributions Act), and Utah's unique flat-rate state income tax. Unlike many states that use progressive tax brackets, Utah employs a flat tax system, making it relatively straightforward to estimate your state liability.

Utah State Income Tax Rate

As of 2024, the Utah state income tax rate is 4.65%. This rate applies to your taxable income regardless of whether you earn $30,000 or $300,000. While the rate is flat, Utah offers a "Taxpayer Tax Credit" which phases out as income increases, effectively providing some relief for lower-income earners.

Federal Taxes and FICA

In addition to state taxes, every worker in Utah is subject to federal obligations:

  • Social Security: 6.2% of your gross pay (up to the annual wage limit).
  • Medicare: 1.45% of your gross pay.
  • Federal Income Tax: Based on progressive brackets ranging from 10% to 37%.

Calculation Example: $65,000 Annual Salary

If you are a single filer in Utah earning $65,000 annually and paid bi-weekly:

Item Annual Amount Bi-weekly Paycheck
Gross Pay $65,000.00 $2,500.00
FICA (7.65%) $4,972.50 $191.25
Utah State Tax (4.65%) $3,022.50 $116.25
Estimated Federal Tax $6,215.00 $239.04
Net Take-Home Pay $50,790.00 $1,953.46

How to Increase Your Take-Home Pay

While you cannot change the tax rates, you can lower your taxable income in Utah by contributing to employer-sponsored plans. Contributions to a 401(k) or a Health Savings Account (HSA) are generally made "pre-tax," meaning they are deducted from your gross pay before federal and state income taxes are calculated. This lowers your overall tax burden and puts more of your money into your own savings rather than tax withholdings.

function calculateUtahPay() { var grossInput = document.getElementById("grossPay").value; var frequency = parseFloat(document.getElementById("payFrequency").value); var filingStatus = document.getElementById("filingStatus").value; if (!grossInput || grossInput 0) { if (taxableIncome <= 11600) annualFederal = taxableIncome * 0.10; else if (taxableIncome <= 47150) annualFederal = 1160 + (taxableIncome – 11600) * 0.12; else if (taxableIncome <= 100525) annualFederal = 5426 + (taxableIncome – 47150) * 0.22; else if (taxableIncome 0) { if (taxableIncome <= 23200) annualFederal = taxableIncome * 0.10; else if (taxableIncome <= 94300) annualFederal = 2320 + (taxableIncome – 23200) * 0.12; else if (taxableIncome <= 201050) annualFederal = 10852 + (taxableIncome – 94300) * 0.22; else annualFederal = 34337 + (taxableIncome – 201050) * 0.24; } } // Period Breakdown var periodFederal = annualFederal / displayFrequency; var periodSS = annualSS / displayFrequency; var periodMedicare = annualMedicare / displayFrequency; var periodUtah = annualUtah / displayFrequency; var periodNet = periodGross – periodFederal – periodSS – periodMedicare – periodUtah; // Update UI document.getElementById("resGross").innerText = "$" + periodGross.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById("resFederal").innerText = "-$" + periodFederal.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById("resSS").innerText = "-$" + periodSS.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById("resMedicare").innerText = "-$" + periodMedicare.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById("resUtah").innerText = "-$" + periodUtah.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById("resNet").innerText = "$" + periodNet.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById("results").style.display = "block"; }

Leave a Comment