Skip to content

abdoachhoubi/morse.js

Repository files navigation

OPEN MORSE

OPEN MORSE is a MORSE to ASCII converter and vice versa.

Preview Banner

MORSE TABLE:

const morse = {
  "!" :  "-.-.--",
  " " :  ".......",
  '"' :  ".-..-.",
  "$" :  "...-..-",
  "&" :  ".-...",
  "'" :  ".----.",
  "(" :  "-.--.",
  ")" :  "-.--.-",
  "+" :  ".-.-.",
  "," :  "--..--",
  "-" :  "-....-",
  "." :  ".-.-.-",
  "/" :  "-..-.",
  "0" :  "-----",
  "1" :  ".----",
  "2" :  "..---",
  "3" :  "...--",
  "4" :  "....-",
  "5" :  ".....",
  "6" :  "-....",
  "7" :  "--...",
  "8" :  "---..",
  "9" :  "----.",
  ":" :  "---...",
  ";" :  "-.-.-.",
  "=" :  "-...-",
  "?" :  "..--..",
  "@" :  ".--.-.",
  "_" :  "..--.-",
  "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" :  "--..",
  " " :  ".......",
};

All contributions are welcomed!