Morse Code Translator

Morse code was invented in the 1830s by Samuel F.

B. Morse and his collaborator Alfred Vail as a way to transmit letters and numbers over a single-wire telegraph. Each character is represented by a unique combination of short signals (dots, or "dits") and long signals (dashes, or "dahs"). Although the original American version of Morse evolved into the International Morse Code used today (standardized as ITU-R M.1677-1), the core idea has remained unchanged for nearly two centuries. It is one of the longest-lived digital encodings in existence.

This morse code translator converts plain English text to International Morse and back again, in real time as you type. A one-click audio button plays your message through the Web Audio API at the standard 600 Hz pitch with authentic ITU timing, so you can actually hear what the telegraph would have sounded like. The tool also includes a Text to Binary mode that encodes each character as an 8-bit ASCII byte, which is useful for teaching, CTF puzzles, or decoding that mysterious binary string you found in a game. Everything runs locally in your browser — no server round-trip, no logging, no tracking.

A Brief History of Morse Code

Samuel Morse filed his first telegraph patent in 1837, but the dot-and-dash encoding that bears his name was primarily the work of Alfred Vail, his business partner and mechanic. Vail studied the frequency of letters in English by counting type in a printer’s tray and assigned the shortest codes to the most common letters — E became a single dot, T a single dash. That statistical insight predated Morse’s code by more than a century what information theorists like Claude Shannon would later formalize as entropy coding.

The first public Morse message, "What hath God wrought?", was sent on May 24, 1844, between Washington, D.C. and Baltimore. Within a few decades, Morse code was running under the oceans on transatlantic cables and across continents on railway telegraphs. The maritime distress signal SOS (… — …) was adopted internationally in 1906, and became famous during the 1912 Titanic disaster. Morse remained a mandatory skill for commercial ship radio operators until 1999.

How Morse Code Works

Morse code is built from two symbols: the dot (.) and the dash (-). A dash lasts exactly three times as long as a dot. The silent gaps matter just as much as the tones:

  • Intra-element gap (between dots and dashes in the same letter): 1 dot length
  • Inter-letter gap (between letters in the same word): 3 dot lengths
  • Inter-word gap (between words): 7 dot lengths

At a typical sending speed of 20 words per minute, one dot lasts roughly 60 milliseconds. This calculator uses 100 ms dots for clarity at beginner speeds (which works out to about 12 WPM). A typical tone is a pure sine wave between 500 Hz and 800 Hz — we use 600 Hz, which radio operators widely consider the most comfortable pitch for long listening sessions.

International vs American Morse

Two flavors of Morse code coexisted for decades. The original American Morse, used on land telegraph lines in the United States, had some letters with internal spaces (like C = "dot space dot dot") and was efficient for skilled telegraphers. International Morse, adopted in 1865 for wireless and undersea use, simplified the code by using only dots and dashes with no internal spaces. American Morse eventually died out with the land telegraph, and International Morse is what every modern reference, radio operator, and translator means when they say "Morse code" today. This tool uses International Morse as defined by the ITU’s Recommendation ITU-R M.1677-1.

Text to Binary Explained

The Binary mode converts text to its ASCII representation, where each character becomes an 8-bit binary number. The capital letter A has the ASCII code 65, which in binary is 01000001. Lowercase a is ASCII 97 or 01100001. The space character is 00100000. All 128 ASCII characters fit in 7 bits, but modern systems use 8-bit bytes (the "extra" leading zero pads each character to a byte).

For characters outside the ASCII range (accented letters, emoji, CJK characters), the translator falls back to UTF-8 encoding and produces the correct multi-byte sequence. Round-tripping a string through text-to-binary-to-text always reproduces the original input exactly.

Modern Uses of Morse Code

Morse is not a historical curiosity. Amateur radio operators still use it every day — a mode called CW (continuous wave) remains one of the most efficient ways to push a signal through weak propagation conditions and heavy interference. The FCC dropped the Morse requirement for amateur licenses in 2007, but CW activity on the HF bands actually grew in the years after.

Beyond radio, pilots memorize three-letter Morse identifier codes that every VOR and NDB navigation beacon transmits on a loop — pilots verify they have the right beacon by listening to the identifier. The aviation emergency frequency 121.5 MHz and emergency locator transmitters still announce themselves in Morse. Accessibility devices use Morse input to let people with limited motor control type by tapping a single switch. And in capture-the-flag (CTF) competitions, escape rooms, and ARG puzzles, Morse is one of the most common layers of encoding you will encounter.

Learning Morse Code Tips

If you want to learn Morse, forget about memorizing a chart. The fastest modern method is the Koch method, which starts you with two letters at full speed and adds a new letter each time you hit 90 percent accuracy. By focusing on the sound of each letter as a single rhythm (not a sequence of dots and dashes), you bypass the mental translation step that bottlenecks most beginners.

A useful first batch: the high-frequency letters E T A O I N. E is one dot. T is one dash. A is "dot dash". I is "dot dot". N is "dash dot". Once these five feel automatic, the rest of the alphabet comes much faster. Websites like LCWO.net and apps like Morse Machine offer free Koch-based practice. This translator is a handy tool for checking your work, building your own practice sentences, and hearing what a correctly-sent message should sound like.

Frequently Asked Questions

Is Morse code still used today?

Yes — extensively in amateur radio (the CW mode), in aviation navigation beacon identifiers, in emergency locator transmitters, and in some accessibility devices. It dropped out of commercial maritime use in 1999 and is no longer required for amateur radio licensing, but it remains one of the most efficient encoding schemes for weak-signal communication.

What is SOS in Morse code?

SOS is ... --- ... — three dots, three dashes, three dots. It was adopted as the international distress signal in 1906 because it is easy to recognize even in bad reception. SOS is traditionally sent as a single run-on "prosign" with no gaps between the letters, not as three distinct letters.

Can I play Morse code audio in the browser?

Yes. This tool uses the Web Audio API to generate a 600 Hz sine wave directly in your browser, with standard ITU timing (100 ms dot, 300 ms dash, 100 ms element gap, 300 ms letter gap, 700 ms word gap). No audio files are downloaded and nothing is sent to a server. Just click "Play Morse" after entering your message.

Why 600 Hz? Is that the standard?

There is no single mandated standard, but 600 Hz is the most commonly recommended pitch for practice and casual listening. Amateur radio operators typically use tones between 500 Hz and 800 Hz. 600 Hz is considered comfortable for long sessions and is used as the default in most Morse learning software.

How do I learn Morse code fast?

Use the Koch method — start with two letters at full target speed (around 20 words per minute) and add a new letter whenever you hit 90 percent accuracy. Memorize the sound rhythm of each letter rather than counting dots and dashes. Start with the high-frequency letters E, T, A, O, I, N. Free sites like LCWO.net automate the whole process.

What is the difference between International and American Morse?

International Morse uses only dots, dashes, and gaps — every letter is built from those two symbols with standard spacing. American Morse (used on US land telegraphs in the 1800s) had some letters with extra internal spaces, like C = "dot space dot dot." Only International Morse is used today, and this translator uses the ITU-R M.1677-1 International Morse standard.

Data accurate as of: April 2026