Skip to main content

MIDI Note Number 60 Is Middle C: A Producer's Guide to Notes, Numbers, and Hertz

How MIDI note numbers map to note names and frequency: middle C is 60, A4 is 69 at 440 Hz, each semitone adds 1, and why your DAW prints C3 or C4.

Published By Li Lei
#midi #music-production #frequency #daw #audio

MIDI Note Number 60 Is Middle C: A Producer's Guide to Notes, Numbers, and Hertz

The first time I opened a sampler manual and saw "root key: 60" instead of "root key: C," I stared at it for a full minute. Sixty what? Sixty hertz? Sixty percent? It turned out to be one of the most useful numbers in music software, and once it clicked, a lot of synth and DAW documentation stopped reading like cipher text. This is the system MIDI uses to name every pitch with a single integer, and it sits underneath every note you draw into a piano roll.

If you just want to punch in a number and read back the note and frequency, the MIDI Note Number Converter does it in any direction. But the math is small enough to carry in your head, and understanding it will save you from a whole category of "why is this an octave off" confusion.

What a MIDI Note Number Actually Is

MIDI represents pitch as a whole number from 0 to 127. That is 128 values, spanning about ten and a half octaves. Each number is one semitone apart from its neighbor: the pitches climb the chromatic scale one step per integer, with no gaps and no decimals. Number 61 is exactly one semitone above 60, and 72 is exactly one octave (twelve semitones) above 60.

The anchor everyone agrees on is middle C. MIDI note number 60 is middle C, and each semitone adds 1 to the number. From there the chromatic ladder is mechanical:

  • 60 = C4
  • 61 = C#4
  • 62 = D4
  • 63 = D#4
  • ...
  • 71 = B4
  • 72 = C5 (one octave up, exactly +12)

Because every step is a fixed semitone, you never have to memorize a lookup table. If you know one note's number, you can count to any other. A perfect fifth is 7 semitones, so the fifth above middle C is 60 + 7 = 67, which is G4. A major third is 4 semitones up: 60 + 4 = 64, which is E4. The interval arithmetic is the note arithmetic.

From Number to Frequency: the Equal-Temperament Formula

Note names are convenient for musicians, but oscillators, tuners, and Fourier plots speak in hertz. The bridge between the two is one formula:

f = 440 × 2^((n − 69) / 12)

Here n is the MIDI note number, and 440 Hz is the tuning reference for A4, which is MIDI 69. Every time n increases by 12, the exponent increases by 1, which doubles the frequency. That is exactly what an octave is: a doubling of pitch. Every time n increases by 1, the frequency multiplies by the twelfth root of two, roughly 1.0595. Twelve of those tiny multiplications stack up to a clean factor of 2.

This is why you cannot treat a note number like a frequency. Numbers are linear in semitones; frequency is exponential. Note 72 is not twice the hertz of note 36, even though 72 is twice 36. Run the number through the formula, never scale it directly. If you want to go the other way and start from a target pitch in hertz, the note frequency calculator handles the reverse lookup and the nearest-note rounding.

A Worked Example: A4 = 69 = 440 Hz

Let me push the standard tuning pitch through the formula step by step, because it is the cleanest case to verify by hand.

Take A4. Its MIDI number is 69. Plug it in:

f = 440 × 2^((69 − 69) / 12)
f = 440 × 2^(0 / 12)
f = 440 × 2^0
f = 440 × 1
f = 440 Hz

The exponent collapses to zero, two to the zero is one, and you are left with exactly 440 Hz. That is the entire point of anchoring the system at MIDI 69: it makes A4 fall on the reference pitch with no rounding.

Now check middle C, MIDI 60, which is 9 semitones below A4:

f = 440 × 2^((60 − 69) / 12)
f = 440 × 2^(−9 / 12)
f = 440 × 2^(−0.75)
f ≈ 440 × 0.5946
f ≈ 261.63 Hz

That 261.63 Hz is the canonical frequency of middle C under A440 tuning, and you will see it printed in tuning charts everywhere. One octave above A4, MIDI 81, lands on exactly 880 Hz, because adding 12 to the number doubles the pitch. The whole system is internally consistent: pick any note, and the name, the number, and the hertz value all agree.

The C3 Versus C4 Trap

Here is the one genuine source of confusion, and it has nothing to do with the math. There is no universal agreement on which octave number to print next to a note.

The scientific (also called Yamaha) convention labels MIDI 60 as C4. Logic Pro, Cubase, and MuseScore use it. The other common convention labels the same note C3, and Ableton Live, FL Studio, and a lot of older Roland and Yamaha hardware use that one. Both are looking at the identical key, the identical MIDI number 60, and the identical 261.63 Hz pitch. Only the octave label on the screen differs.

This causes real arguments. A collaborator in Ableton calls a part "the C3 bassline," you open it in Logic and see C4, and you both assume someone transposed something. Nobody did. The number was 60 the entire time. When you feed numbers into the converter you can flip a C3/C4 toggle to relabel the octave without ever touching the number or the pitch, so the name on screen matches whatever your DAW shows. The rule of thumb: when a chart looks an octave off between two programs, trust the MIDI number, not the printed name.

Cents, Range, and the Edges Worth Knowing

Two practical details round this out. First, when you start from a measured frequency rather than a clean note, the result usually does not land exactly on a MIDI pitch. The gap is measured in cents, where 100 cents is one semitone. A hardware tuner reading 445 Hz snaps to A4 (MIDI 69, 440 Hz) and sits about +19.6 cents sharp, roughly a fifth of a semitone. Negative cents mean flat, positive mean sharp, and zero means dead on the note.

Second, the range has hard walls. MIDI numbers stop at 127 and floor at 0. In the C4 convention that runs from C-1 (about 8.18 Hz, below human hearing) up to G9 (about 12543 Hz). An 88-key piano fits inside this comfortably, covering MIDI 21 (A0) to MIDI 108 (C8), with headroom on both ends for synth and percussion mapping. A frequency far above G9 or below C-1 simply has no MIDI note to map to, so do not expect a number outside that band.

That is the whole system: one integer per semitone, anchored at 69 = A4 = 440 Hz, with 60 sitting on middle C. Once those landmarks are in place, every other note is a short count or a quick pass through the formula away.


Made by Toolora · Updated 2026-06-13