Per Hour Rate Calculator

.hourly-calc-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #e1e1e1; border-radius: 12px; background-color: #ffffff; box-shadow: 0 4px 6px rgba(0,0,0,0.05); color: #333; } .hourly-calc-header { text-align: center; margin-bottom: 30px; } .hourly-calc-header h2 { color: #2c3e50; margin-bottom: 10px; } .hourly-calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 25px; } @media (max-width: 600px) { .hourly-calc-grid { grid-template-columns: 1fr; } } .hourly-calc-group { display: flex; flex-direction: column; } .hourly-calc-group label { font-weight: 600; margin-bottom: 8px; font-size: 0.95rem; color: #444; } .hourly-calc-group input { padding: 12px; border: 1px solid #ccc; border-radius: 6px; font-size: 1rem; } .hourly-calc-btn { background-color: #27ae60; color: white; padding: 15px; border: none; border-radius: 6px; font-size: 1.1rem; font-weight: bold; cursor: pointer; width: 100%; transition: background-color 0.2s; } .hourly-calc-btn:hover { background-color: #219150; } #hourly-calc-result-area { margin-top: 30px; padding: 20px; background-color: #f9f9f9; border-radius: 8px; display: none; border-left: 5px solid #27ae60; } .hourly-result-value { font-size: 2rem; font-weight: 800; color: #27ae60; margin: 10px 0; } .article-section { margin-top: 40px; line-height: 1.6; color: #444; } .article-section h3 { color: #2c3e50; border-bottom: 2px solid #eee; padding-bottom: 10px; margin-top: 30px; } .example-box { background-color: #eef7ff; padding: 15px; border-radius: 6px; margin: 15px 0; }

Freelance Hourly Rate Calculator

Calculate exactly what you should charge per hour to meet your financial goals and cover business costs.

Your Minimum Hourly Rate
$0.00

How to Calculate Your Per Hour Rate

Setting your hourly rate is one of the most critical steps for freelancers, contractors, and consultants. Unlike a traditional salary, your hourly rate must account for "non-billable" time—such as marketing, invoicing, and admin—along with business overhead and taxes.

This calculator uses the Revenue Requirement Method. This formula starts with the amount of money you want to keep in your pocket and works backward to find the rate that covers everything else.

Example Calculation:
  • Target Take-Home: $70,000
  • Annual Expenses: $10,000 (Software, Insurance, Hardware)
  • Total Revenue Needed: $80,000
  • Working Weeks: 48 (52 weeks minus 4 weeks vacation/sick leave)
  • Billable Hours: 25 hours per week
  • Calculation: $80,000 / (48 weeks × 25 hours) = $66.67 per hour

The Difference Between Billable and Working Hours

A common mistake is assuming you will bill 40 hours per week. Most freelancers spend 20-30% of their time on tasks they cannot charge for, like finding new clients or managing accounts. To ensure your business remains profitable, you should base your hourly rate on your billable hours, not your total working time.

Factors to Consider When Setting Your Rate

  • Self-Employment Tax: Remember that as a freelancer, you are responsible for both the employer and employee portions of social security and medicare taxes. It is often wise to add 15-20% to your "Target Take-Home" to account for this.
  • Market Positioning: Is your calculated rate competitive for your niche? If you are a specialized expert, you can often charge 2x or 3x the basic rate.
  • Value-Based Pricing: Sometimes, charging by the hour isn't the best move. If you can complete a project in 2 hours that provides $10,000 in value to a client, an hourly rate might actually penalize your efficiency.
function calculateHourlyRate() { var targetIncome = parseFloat(document.getElementById("targetIncome").value); var annualExpenses = parseFloat(document.getElementById("annualExpenses").value); var billableHours = parseFloat(document.getElementById("billableHours").value); var weeksOff = parseFloat(document.getElementById("weeksOff").value); var resultArea = document.getElementById("hourly-calc-result-area"); var rateOutput = document.getElementById("finalRateOutput"); var breakdownText = document.getElementById("breakdownText"); // Validation if (isNaN(targetIncome) || isNaN(annualExpenses) || isNaN(billableHours) || isNaN(weeksOff)) { alert("Please enter valid numbers in all fields."); return; } if (weeksOff >= 52) { alert("Weeks off must be less than 52."); return; } if (billableHours <= 0) { alert("Billable hours per week must be greater than zero."); return; } // Logic var totalRevenueNeeded = targetIncome + annualExpenses; var workingWeeksPerYear = 52 – weeksOff; var totalAnnualBillableHours = workingWeeksPerYear * billableHours; var requiredRate = totalRevenueNeeded / totalAnnualBillableHours; // Formatting var formattedRate = requiredRate.toLocaleString(undefined, { style: 'currency', currency: 'USD', minimumFractionDigits: 2, maximumFractionDigits: 2 }); // Display rateOutput.innerHTML = formattedRate; breakdownText.innerHTML = "To earn $" + targetIncome.toLocaleString() + " after expenses, you need to generate $" + totalRevenueNeeded.toLocaleString() + " in total annual revenue across " + totalAnnualBillableHours + " billable hours."; resultArea.style.display = "block"; resultArea.scrollIntoView({ behavior: 'smooth', block: 'nearest' }); }

Leave a Comment