INSTRUCTIONS: - For the ENCODER 1) Input MUST be in alphabets (aAbBcCdDeE), UPPER or lower case both allowed. 'Space' is also allowed 2) Try not to make the message too long as it will be difficult to read the coded message. -For the DECODER 1) Make sure your coded input has an EVEN (2,4,6,8) number of characters. e.g. -> '03050206' would work, whereas '0205030' will not 2) Only put in numbers, and make sure that it is recognised by the Project. I made this project in 30 mins, just a test feature for (hopefully) an upcoming online chat project. Have fun puzzeling your friends!
How this works: lets say you have a normal message: 'Hi' Lets make every alphabet an unique number a = 01 b = 02 ... z = 26 'space' = 27 Put these together in a single message h = 08 i = 09 To make '0809' THAT is your encoded message! Don't believe me? Try it in the decoder then!