Every note, every octave, in hertz
This reference lists the equal-temperament frequency of every musical note from C0 up to B8. It is built for musicians, audio developers, instrument builders and anyone wiring up a synthesiser or tuner. Frequencies are computed live from the A4 reference pitch you choose, so you can read off standard 440 Hz tuning or any alternative such as 432 Hz or 442 Hz.
How it works
In twelve-tone equal temperament, every semitone is the same frequency ratio: the twelfth root of two. Starting from a fixed anchor, the frequency of any note is:
f = A4 * 2 ^ ((n - 69) / 12)
Here n is the MIDI note number (A4 = 69) and A4 is the reference pitch in
hertz. Because the exponent is linear in n, moving up twelve semitones adds
12/12 = 1 to the exponent and doubles the frequency — one octave. Moving down
twelve halves it. That single formula generates the entire table.
Tips and examples
- A4 = 440 Hz gives A5 = 880 Hz, A3 = 220 Hz and middle C (C4) about 261.63 Hz.
- Each semitone differs by roughly 5.95 percent; that is why adjacent notes look close but never repeat until the octave.
- To match a violin tuned to 442 Hz, set the reference to 442 and the whole table shifts up by the ratio 442/440.
- MIDI 60 is middle C; searching
60jumps straight to it.