Wage Calculator Washington

Washington State Wage Calculator

Use this calculator to estimate your gross earnings based on your hourly wage and hours worked per week in Washington State. This tool helps you understand your potential weekly, bi-weekly, monthly, and annual income, including overtime pay according to Washington's standard rules.

Estimated Gross Earnings:

Regular Weekly Pay:

Overtime Weekly Pay:

Total Gross Weekly Pay:

Total Gross Bi-Weekly Pay:

Total Gross Monthly Pay:

Total Gross Annual Pay:

function calculateWashingtonWage() { var hourlyWage = parseFloat(document.getElementById("hourlyWage").value); var hoursPerWeek = parseFloat(document.getElementById("hoursPerWeek").value); var overtimeMultiplier = parseFloat(document.getElementById("overtimeMultiplier").value); // Input validation if (isNaN(hourlyWage) || hourlyWage < 0) { alert("Please enter a valid hourly wage."); return; } if (isNaN(hoursPerWeek) || hoursPerWeek < 0) { alert("Please enter valid hours worked per week."); return; } if (isNaN(overtimeMultiplier) || overtimeMultiplier < 1) { alert("Please enter a valid overtime multiplier (1 or greater)."); return; } var regularHours = Math.min(hoursPerWeek, 40); var overtimeHours = Math.max(0, hoursPerWeek – 40); var regularWeeklyPay = regularHours * hourlyWage; var overtimeWeeklyPay = overtimeHours * hourlyWage * overtimeMultiplier; var totalWeeklyGross = regularWeeklyPay + overtimeWeeklyPay; var totalBiWeeklyGross = totalWeeklyGross * 2; var totalMonthlyGross = totalWeeklyGross * (52 / 12); // Approximately 4.33 weeks per month var totalAnnualGross = totalWeeklyGross * 52; document.getElementById("regularWeeklyPayResult").textContent = "$" + regularWeeklyPay.toFixed(2); document.getElementById("overtimeWeeklyPayResult").textContent = "$" + overtimeWeeklyPay.toFixed(2); document.getElementById("totalWeeklyGrossResult").textContent = "$" + totalWeeklyGross.toFixed(2); document.getElementById("totalBiWeeklyGrossResult").textContent = "$" + totalBiWeeklyGross.toFixed(2); document.getElementById("totalMonthlyGrossResult").textContent = "$" + totalMonthlyGross.toFixed(2); document.getElementById("totalAnnualGrossResult").textContent = "$" + totalAnnualGross.toFixed(2); } // Run calculation on page load with default values window.onload = calculateWashingtonWage; .wage-calculator-washington { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: #f9f9f9; padding: 25px; border-radius: 10px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); max-width: 600px; margin: 20px auto; border: 1px solid #e0e0e0; } .wage-calculator-washington h2 { color: #2c3e50; text-align: center; margin-bottom: 20px; font-size: 1.8em; } .wage-calculator-washington p { color: #34495e; line-height: 1.6; margin-bottom: 15px; } .wage-calculator-washington .calculator-form label { display: block; margin-bottom: 8px; color: #34495e; font-weight: bold; } .wage-calculator-washington .calculator-form input[type="number"] { width: calc(100% – 20px); padding: 12px; margin-bottom: 18px; border: 1px solid #ccc; border-radius: 6px; font-size: 1em; box-sizing: border-box; } .wage-calculator-washington .calculator-form button { background-color: #28a745; color: white; padding: 14px 25px; border: none; border-radius: 6px; cursor: pointer; font-size: 1.1em; width: 100%; display: block; margin-top: 10px; transition: background-color 0.3s ease; } .wage-calculator-washington .calculator-form button:hover { background-color: #218838; } .wage-calculator-washington .calculator-results { background-color: #eaf7ed; border: 1px solid #d4edda; padding: 20px; border-radius: 8px; margin-top: 25px; } .wage-calculator-washington .calculator-results h3 { color: #28a745; margin-top: 0; margin-bottom: 15px; font-size: 1.5em; text-align: center; } .wage-calculator-washington .calculator-results p { margin-bottom: 10px; font-size: 1.1em; color: #34495e; display: flex; justify-content: space-between; align-items: center; } .wage-calculator-washington .calculator-results p strong { color: #1e7e34; font-size: 1.2em; } .wage-calculator-washington .calculator-results span { font-weight: bold; color: #0056b3; }

Understanding Wages in Washington State

Washington State has some of the most progressive wage laws in the United States, designed to ensure fair compensation for workers. This calculator helps you estimate your gross pay based on these regulations, but it's important to understand the underlying rules.

Washington State Minimum Wage

As of January 1, 2024, the statewide minimum wage in Washington is $16.28 per hour. This rate applies to most employees, with some exceptions. It's crucial for both employers and employees to be aware of this baseline. Some cities within Washington, such as Seattle and SeaTac, have even higher local minimum wages. This calculator uses the hourly wage you input, so if your wage is below the state minimum, it will still calculate based on your input, but you should be aware of your rights.

Overtime Rules in Washington

For most non-exempt employees in Washington, overtime pay is mandated for all hours worked over 40 in a single workweek. The standard overtime rate is one and a half times (1.5x) the employee's regular rate of pay. This calculator defaults to a 1.5x multiplier, but you can adjust it if your specific employment contract or collective bargaining agreement specifies a different rate (though 1.5x is the legal minimum for most cases).

It's important to note that certain employees are exempt from overtime laws, including some executive, administrative, and professional employees who meet specific salary and duty tests. This calculator assumes you are a non-exempt employee.

Gross vs. Net Pay

The figures provided by this calculator represent your gross pay. Gross pay is your total earnings before any deductions are taken out. Your actual take-home pay, or net pay, will be less than your gross pay due to various deductions, which typically include:

  • Federal Income Tax
  • State Income Tax (Washington does not have a state income tax on wages)
  • Social Security and Medicare (FICA taxes)
  • Washington Paid Family and Medical Leave (PFML) contributions
  • Health insurance premiums
  • Retirement contributions (e.g., 401k)
  • Other voluntary deductions (e.g., union dues, garnishments)

This calculator does not account for these deductions, as they vary significantly based on individual circumstances and employer benefits.

Example Calculation:

Let's say an employee in Washington earns $20 per hour and works 45 hours in a week:

  • Hourly Wage: $20.00
  • Hours Worked Per Week: 45
  • Overtime Multiplier: 1.5
  • Regular Hours: 40
  • Overtime Hours: 5 (45 – 40)
  • Regular Weekly Pay: 40 hours * $20/hour = $800.00
  • Overtime Weekly Pay: 5 hours * $20/hour * 1.5 = $150.00
  • Total Gross Weekly Pay: $800.00 + $150.00 = $950.00
  • Total Gross Bi-Weekly Pay: $950.00 * 2 = $1,900.00
  • Total Gross Monthly Pay: $950.00 * (52/12) ≈ $4,116.67
  • Total Gross Annual Pay: $950.00 * 52 = $49,400.00

This calculator provides a quick and easy way to perform these calculations for your specific situation, helping you better understand your potential earnings in Washington State.

Leave a Comment