A rate of pay based on the number of hours worked. Employees paid hourly are typically non-exempt and entitled to overtime pay for hours worked beyond 40 in a week.

What Is an Hourly Wage?

An hourly wage is a rate of pay based on the number of hours worked. Employees paid hourly receive compensation calculated by multiplying their hourly rate by the hours they work in each pay period.

Unlike salaried employees  who receive fixed compensation, hourly workers' paychecks vary based on actual hours worked. This makes hourly wage the most common pay structure for non-exempt employees who are entitled to overtime pay.

For information on hourly employees as a classification, see our hourly employee article. This article focuses specifically on setting and managing the wage rate itself.

Legal Minimums

Before setting any hourly wage, you must comply with minimum wage laws.

Federal Minimum Wage

The federal minimum wage is currently $7.25 per hour under the Fair Labor Standards Act. This applies to most employees unless a specific exemption exists.

State and Local Minimums

Many states and cities set higher minimum wages than federal law. You must pay whichever minimum is highest in your location:

Check your state's Department of Labor website for current rates. Some jurisdictions have different rates for:

When Minimums Change

Many jurisdictions increase minimum wage annually based on:

Track these changes carefully, as failure to adjust wages when minimums increase violates the law.

Setting Appropriate Hourly Wages

Determining the right hourly wage requires balancing multiple factors.

Market Rate Research

Industry Standards: Research what competitors pay for similar roles in your area. Resources include:

Geographic Differences: Wages vary significantly by location based on:

A $15/hour retail wage might be competitive in rural areas but insufficient in major cities.

Job Complexity and Skills

Consider what the role requires:

Factor Lower Wage Justified Higher Wage Justified
Skills Required Minimal training needed Specialized skills or certification
Experience Entry-level position Requires significant experience
Responsibility Limited decision-making Significant responsibility or supervision
Physical Demands Sedentary work Physically demanding or hazardous
Schedule Standard daytime hours Nights, weekends, or variable shifts

Internal Equity

Look at your existing wage structure:

Wage Compression occurs when new hires earn nearly as much as experienced employees. This happens when:

Address compression proactively by adjusting tenured employees' wages when you raise starting rates.

Business Affordability

Calculate total labor cost, not just the wage:

Direct Costs:

Indirect Costs:

A $15/hour wage costs approximately $16.15-$17/hour once you include employer taxes, and more if you provide benefits.

Wage Adjustments and Increases

When to Adjust Wages

Scheduled Raises:

Market Corrections:

Performance-Based:

Legal Requirements:

How Much to Increase

Typical annual increases for satisfactory performance range from 2-5%, though this varies by:

Promotional increases typically range from 10-20% depending on the role change magnitude.

Special Wage Considerations

Tipped Employees

Federal law allows a lower minimum wage ($2.13/hour) for tipped employees if tips bring total compensation to at least the regular minimum wage. However:

See Department of Labor guidance on tip regulations.

Training Wages

Some jurisdictions allow a lower "training wage" for:

Verify your state allows this before implementing.

Shift Differentials

Many employers pay additional amounts for less desirable shifts:

Shift differentials affect the regular rate for overtime calculation purposes.

Pay Transparency Trends

An increasing number of states and cities require salary range disclosure in job postings. When setting hourly wages, consider:

Pay transparency laws aim to reduce wage discrimination and help job seekers make informed decisions.

Documentation and Communication

In Job Postings

Be clear about:

In Offer Letters

Specify:

In Employee Communications

Explain:

Common Hourly Wage Mistakes

Mistake #1: Ignoring Market Rates Paying significantly below market leads to high turnover and difficulty hiring, ultimately costing more than paying competitive wages from the start.

Mistake #2: Inconsistent Pay for Similar Roles Without a clear rationale for wage differences between similarly situated employees, you create morale issues and potential discrimination liability.

Mistake #3: Forgetting About Compression Failing to adjust existing employees' wages when raising starting rates breeds resentment and turnover among your most experienced workers.

Mistake #4: Not Planning for Overtime Setting wages without considering overtime costs can blow your budget during busy periods. Factor in expected overtime when determining affordability.

Mistake #5: Unclear Communication Employees who don't understand how their pay is calculated or when they're eligible for increases often feel undervalued even when paid fairly.

The Bottom Line

Setting hourly wages requires balancing legal compliance, market competitiveness, internal equity, and business affordability. The goal is to pay enough to attract and retain quality employees while maintaining sustainable business costs.

Research market rates thoroughly, understand your legal obligations, maintain internal equity, and communicate clearly with employees about compensation. Review and adjust wages regularly. What's competitive today may not be tomorrow.

Fast to set up. Easy to use.
Get your team up and running with Breakroom in 60 seconds. Or schedule a free, personalized demo today.
// Function to update active link function updateActiveLink(activeSectionId) { // Remove active class from all links navigationLinks.forEach(function(link) { link.classList.remove('is-active'); }); // Add active class to the corresponding link var activeLink = document.querySelector('a[href="#' + activeSectionId + '"]'); if (activeLink) { activeLink.classList.add('is-active'); } } // Set up intersection observer for scroll-based active states if (navigationLinks.length > 0) { var observerOptions = { root: null, rootMargin: '-20% 0px -80% 0px', // Trigger when section is 20% from top threshold: 0 }; var observer = new IntersectionObserver(function(entries) { entries.forEach(function(entry) { if (entry.isIntersecting) { updateActiveLink(entry.target.id); } }); }, observerOptions); // Observe all H2 sections headers.forEach(function(header) { observer.observe(header); }); }