keys: space: enter a string(numbers, letters, and/or symbols) and have it encoded u: encode your username d: enter a string(combination of the numbers 0 - 9) and have it decoded(please read my notes on the syntax of this)
PLEASE READ THIS BEFORE USING: note on how my encoding/decoding works: the numbers that are generated upon encoding are actually following a certain syntax that I made for 2 reasons: 1: identify corrupted data 2: compact the data as much as possible Syntax: first digit: number of digits to represent each character(usually 2) second digit: how many of the following digits are used to identify the total number of characters when decoded(usually two) 3rd through (3+second digit): identifies how many digits represent each character remaining digits: the actual encoded characters example: if my username('Blairisa') were to be encoded, it would be '2183822111928192911'. the first digit(2 in this example) tells you that each letter is represented by by a 2 digit number. The second digit(1 in this example) tells you that the following single digit(if it was 2 then it would be the next 2 digits, same pattern for 1-9) is reserved for the length of the string when it is decoded. The following 1 digit(s)(8 in this example) tell you that the decoded string is 8 characters. If this syntax isn't followed, then it is possible that you will get an error. If you plan on using it in one of your projects, all you need is the 'encode/decode' sprite and please make sure to give credit where credit is due, not just with this, but with anything that you make that uses someone else's work.