Music Transpose Calculator

Transpose a pitch class up or down by a chosen number of semitones.

995.2K uses Updated · 2026-05-21 Runs locally · zero upload
AD

How to Use Music Transpose Calculator

Enter a note name such as C, D#, or Bb, then enter the number of semitones to move. Positive values transpose upward and negative values transpose downward. The calculator returns the new pitch class and shows the original and resulting pitch indexes. It preserves flat-oriented spelling when the input uses a flat note.

Formula & Theory - Music Transpose Calculator

Western chromatic pitch classes can be represented as indexes 0-11. Transposition adds the semitone offset to the original index and wraps the result modulo 12. This tool works on pitch class names only; it does not calculate octave changes, key-aware enharmonic spelling, or full chord voicings.

newIndex = (noteIndex + semitones) mod 12
result = pitchName[newIndex]

Use Cases for Music Transpose Calculator

Use it for moving melodies, checking chord roots, adapting riffs to another starting note, preparing music theory examples, or quickly verifying semitone intervals without counting around the keyboard by hand.

Frequently asked questions about Music Transpose Calculator

How do I use Music Transpose Calculator?

Enter a note and a semitone offset. Use positive numbers to transpose up and negative numbers to transpose down.

What formula or rule does Music Transpose Calculator use?

It converts the note to a 0-11 pitch index, adds the semitone offset, wraps modulo 12, and returns the matching pitch name.

Is my data stored?

No. All calculations happen in your browser; nothing is sent to a server.