Cents to Frequency Calculator

Convert pitch intervals in cents to exact frequencies — and back.

Ad placeholder (leaderboard)
Enjoying the tools? Go Pro for £4.99 (one-time) and remove all ads — forever, on this device. Remove ads — £4.99

The cents-to-frequency calculator converts pitch intervals expressed in cents into exact hertz values — and reverses the process so you can measure how far apart any two frequencies really are. It covers three workflows in one tool: apply a cent offset to a base frequency, compute the cent interval between two frequencies, and look up any MIDI note number.

How it works

Sound pitch is perceived logarithmically: doubling a frequency raises pitch by exactly one octave, regardless of the starting note. Equal temperament divides that octave into 12 semitones, and each semitone into 100 cents, giving 1 200 cents per octave. The defining formula is:

f2 = f1 × 2^(cents ÷ 1200)

Because the exponent grows linearly with cents and the result is a power of 2, every equal-temperament interval is expressed precisely. To reverse the operation — measuring the interval between two known frequencies — rearrange to:

cents = 1 200 × log₂(f2 ÷ f1)

The MIDI mode uses the same formula anchored at MIDI note 69 (A4):

f = A4 × 2^((MIDI − 69) ÷ 12)

All three formulas are evaluated in IEEE-754 double precision directly in your browser; no data leaves your device.

Worked example

You have a 440 Hz tone (A4) and want to find the note 700 cents above it — a perfect fifth in equal temperament:

  1. Plug in: f2 = 440 × 2^(700 ÷ 1200) = 440 × 2^(0.5833…) ≈ 440 × 1.4983 ≈ 659.26 Hz
  2. That is E5 in equal temperament (MIDI note 76), the standard concert pitch for the note a fifth above A4.
  3. In just intonation the perfect fifth has a frequency ratio of exactly 3:2 = 1.5000, giving 440 × 1.5 = 660 Hz — about 1.96 cents sharper than the equal-tempered value.
BaseCentsSemitonesRatioResult
440 Hz10011.0595466.16 Hz (A#4)
440 Hz70071.4983659.26 Hz (E5)
440 Hz1200122.0000880.00 Hz (A5)
261.63 Hz40041.2599329.63 Hz (E4)
659.26 Hz-700-70.6674440.00 Hz (A4)

Formula note

The formula f2 = f1 × 2^(cents ÷ 1200) is the direct consequence of equal temperament’s definition: the octave ratio of 2 is divided into 1 200 equal logarithmic steps. Setting cents = 100 gives the semitone ratio 2^(1/12) ≈ 1.059 463. Setting cents = 1 200 gives 2^1 = 2.000 000, the exact octave. Setting cents = 0 gives 2^0 = 1, a perfect unison. The logarithmic inverse cents = 1 200 × log₂(f2/f1) is exact for any positive frequency pair; the calculator also decomposes the result into octaves, whole semitones, and remaining cents for easier reading.

Ad placeholder (rectangle)