The developer tools you reach for every day, all in one place.
Converters, formatters, hashes, validators, and the small utilities you keep reopening stay together instead of getting lost across tabs.
/ Tools
■Morse Code Translator
Translate text to and from Morse code with audio playback
What is Morse Code?
Morse code is a method of encoding text characters as standardized sequences of two signal durations called dots (.) and dashes (-). Invented by Samuel Morse in the 1830s for use with the telegraph, it was one of the fi…
How does it work?
Signal Timing A dot (.) is one unit of time A dash (-) is three units of time Space between symbols: one unit Space between letters: three units Space between words: seven units (represented as /) Common Codes SOS: ...…
Sample Cases
Covers SOS distress signal, Hello World, and Numbers so you can compare common inputs and outputs quickly.
/ Code
■Source code from the selected tool, shown here alongside the live version on the right.
// Morse code encoding and decoding
const MORSE_CODE: Record<string, string> = {
'A': '.-', 'B': '-...', 'C': '-.-.', 'D': '-..',
'E': '.', 'F': '..-.', 'G': '--.', 'H': '....',
'I': '..', 'J': '.---', 'K': '-.-', 'L': '.-..',
'M': '--', 'N': '-.', 'O': '---', 'P': '.--.',
'Q': '--.-', 'R': '.-.', 'S': '...', 'T': '-',
'U': '..-', 'V': '...-', 'W': '.--', 'X': '-..-',
'Y': '-.--', 'Z': '--..',