Frequency Converter Free | Hz to kHz, MHz, GHz Online

📏 Unit Converters Free Forever

Frequency Converter: Hz, kHz, MHz, GHz & RPM

Convert between hertz, kilohertz, megahertz, gigahertz, terahertz, and rotational speed units like RPM and radians per second, instantly in your browser.

Value
From
To
About This Tool

How the frequency converter links Hertz to RPM and radians per second

Frequency is simply how many times something repeats per second, but the unit you reach for depends entirely on what is repeating. Electrical engineers say Hertz. Mechanics say revolutions per minute. Physicists working with rotating systems say radians per second. All three describe the same underlying idea, a cycle count over time, and this tool treats Hertz as the anchor unit since it is the SI derived unit for frequency, then converts every rotational unit through it.

All math runs locally in the browser using a static object of multiplicative factors. Nothing is sent anywhere, so a frequency value you’re testing for, say, audio engineering work stays private by default.

The conversion logic, including how RPM gets folded in

Step 1 Validate and reject negatives The input is parsed as a float. Empty fields and non-numeric input trigger an inline error, and negative values are explicitly rejected since frequency as defined here cannot be negative.
Step 2 Convert to Hertz The value is multiplied by the source unit’s factor. RPM’s factor is 1/60, because 1 revolution per minute equals one sixtieth of a revolution per second, which is the definition of one sixtieth of a Hertz for rotational counting.
Step 3 Scale to the target unit The Hertz value is divided by the target factor. Converting to radians per second divides by 1/(2π), which is the same as multiplying by 2π, reflecting that one full cycle equals 2π radians.
Step 4 Populate every unit at once The Hertz value is divided against all eight units in a single pass to fill the comparison table, so switching the target selector doesn’t require a fresh calculation.
// all factors expressed relative to 1 hertz, from the tool source var UNITS = { hz: { factor: 1 }, khz: { factor: 1e3 }, mhz: { factor: 1e6 }, ghz: { factor: 1e9 }, thz: { factor: 1e12 }, rpm: { factor: 1 / 60 }, // revolutions per minute rps: { factor: 1 }, // revolutions per second == hertz radps: { factor: 1 / (2 * Math.PI) } // radians per second };

Full unit table, factor relative to one hertz

UnitSymbolFactor (Hz)
HertzHz1 (base unit)
KilohertzkHz1,000
MegahertzMHz1,000,000
GigahertzGHz1,000,000,000
TerahertzTHz1,000,000,000,000
Revolutions per minuteRPM0.016667 (1/60)
Revolutions per secondRPS1
Radians per secondrad/s0.159155 (1/2π)
RPS and Hertz are numerically identical, but not conceptually the same. The table assigns revolutions per second a factor of exactly 1, matching Hertz one for one. That is correct arithmetically: both count cycles per second. But Hertz is defined for any periodic phenomenon, a sound wave, an electrical signal, a blinking light, while RPS specifically implies physical rotation. Treating them as interchangeable works for the math and fails for the physics, which is why engineering documentation rarely swaps the two even though this converter, correctly, gives them the same number.

Two contexts where this table gets used daily

Audio and electronics

Concert pitch A above middle C is standardized at 440 Hz, the tool’s default example. Radio bands, processor clock speeds in GHz, and AC mains frequency at 50 or 60 Hz all live in the Hz through THz range of this table.

Mechanical and motor engineering

Motor nameplates and tachometers report RPM almost exclusively, while control system equations for angular velocity are written in radians per second, making the RPM to rad/s conversion one of the most common lookups in motion control work.

Standards behind the unit

Named for Heinrich Hertz SI derived unit, reciprocal second Angular velocity in radians

The Hertz was adopted internationally in 1960 as part of the SI, named for Heinrich Hertz, who proved the existence of electromagnetic waves in 1887. It is formally a reciprocal second, one cycle per second, which makes it dimensionally simple but conceptually broad: it applies equally to a vibrating string, an AC power grid, and a spinning turbine, which is exactly why a converter needs both the pure frequency units and the rotational ones side by side.

Frequency references

Where frequency units appear

Converting a motor’s RPM rating into radians per second for a robotics or control systems equation, checking whether a processor’s clock speed in GHz matches a spec sheet quoted in MHz, tuning musical instruments against a reference frequency in Hz, verifying that AC mains frequency assumptions line up between 50 Hz and 60 Hz regions for imported electronics, and translating a wind turbine or engine tachometer reading into the angular velocity units used in an engineering calculation.

Common Questions

FAQ: Frequency Converter

Divide the hertz value by 1,000 to get kilohertz, since kilo means one thousand. For example, 2,500 Hz equals 2.5 kHz. Going the other direction, multiply kilohertz by 1,000 to get back to hertz.

Both are metric multiples of hertz: 1 megahertz (MHz) equals 1,000,000 Hz, while 1 gigahertz (GHz) equals 1,000,000,000 Hz, a thousand times larger than a megahertz. GHz is the typical unit for modern CPU clock speeds and Wi-Fi bands, while MHz is more common for older processors, FM radio frequencies, and many analog electronics specs.

RPM (revolutions per minute) and Hz (cycles per second) both measure repeating events, just over different time windows, so 1 Hz equals 60 RPM, since there are 60 seconds in a minute. This conversion is common when comparing a motor’s RPM rating to an electrical frequency spec, or when analyzing vibration frequencies from rotating machinery.

Radians per second (rad/s) is the standard unit of angular velocity in physics, engineering, and control systems, describing how fast an angle changes over time using radians (where a full circle is 2π radians) rather than revolutions. It converts to Hz by dividing by 2π, since one full revolution (2π radians) corresponds to one cycle.

Audible sound spans roughly 20 Hz to 20,000 Hz (20 kHz), the range of human hearing, while radio waves used for broadcasting and wireless communication span from kilohertz up into the gigahertz range, far above what any ear can perceive. The unit prefixes exist precisely because these fields routinely work across vastly different orders of magnitude.

Yes, all conversions use exact mathematical relationships between units (powers of 1,000 for metric prefixes, 60 for RPM, and 2π for radians), computed with full floating-point precision in your browser, not rounded lookup tables. For extremely high-precision engineering work, always cross-check against your specific standard’s defined constants.

Privacy Overview

Cookies let this site remember your preferences and show us which tools people actually use. Full detail sits in our Privacy Policy.