Converts text to and from Morse code.
Morse Code is a free tool that converts text to and from Morse code right in your browser. Use encode mode to turn letters and digits into dots and dashes, or decode mode to translate Morse signals back into readable text. It covers the standard A-Z letters and 0-9 numbers, with spaces between symbols and a slash separating words.
No. The conversion runs entirely in your browser using local JavaScript, and nothing you type is uploaded or stored on any server.
It maps the 26 English letters A-Z and the digits 0-9. When encoding, letters are uppercased automatically and any unsupported characters (such as punctuation or accented letters) are dropped from the output.
Each character's dots and dashes are separated by a single space, and words are separated by a space-slash-space sequence ( / ). For decoding, your input should follow this same convention.
Decoding throws an error if it encounters a dot/dash sequence that doesn't match any known letter or number. Check that symbols are separated by single spaces and words by ' / ', and that you only use supported A-Z or 0-9 codes.
No. Only letters and digits are encoded; punctuation, symbols, and accented characters are ignored and won't appear in the Morse output.