Firstly, lets rehash a little bit of basic computer background. Everyone learned in their first computer class that there are 8 bits in a byte. We also learned that there is 1 byte per character. The bits that make up that character are a combination of ZEROES and ONES. The computer interprets these 1s and 0s into a readable human language standard as defined by ANSI. This format is called ASCII. The 1s and 0s are called BINARY.
so...
Since you have 8 BITS to define the character you want, you use a simple mathematical algorithm to figure out the values for the characters you want. You can do this in your head, but it can be time consuming. Lets start with an easy example.
the first logical binary combination is 00000000 (EIGHT ZEROES). this is the starting point and is called a "NUL" or null value. It actually literally means nothing. Think of it as opening your mouth, but nothing comes out. The next combination, would be 00000001. This is logically the next sequential number in the sequence. This is where a lot of people make their first mistake.
To be thorough, you should never drop leading ZEROES!!! Mathematically, 1=01=0001=00000001 ! Leading zeroes are ignored! NOT IN BINARY!!! It takes ALL EIGHT bits to define each byte. There is no other way to know the start and stop point of the byte other than length! Which is another thing that some people don't understand. There are NO SPACES between letters, words, or anything in binary. It is location dependant.
But lets keep the examples simple right now.
I mentioned earlier that the next sequential number in binary would be 00000001. Most people assume this to be the letter "A". I also explained that some people drop the leading ZEROES, and just think that 1=A=00000001. The next number in sequence is 00000010 (sometimes written as 10) since the binary system only uses 1 and 0. The third number in sequence is 00000011 (sometimes written as 11) and so on, and so on. They are commonly assumed to be B and C, and so on. By following this pattern, you can cover all 26 letters by only needing 5 of the 8 significant digits ending with Z as 00011010 (or 11010, dropping the leading zeroes).
This is "almost" correct.
You NEVER DROP LEADING ZEROES!!! IN BINARY, ALL DIGITS ARE SIGNIFICANT DIGITS!!! Here is why.
Since I explained that you only need 5 to define the letters, and that all 8 are needed for the BYTE makeup, that leaves 3 digits unused, right? These digits are used to further breakdown ASCII characters. These are characters like the playing card faces(00000011,00000100,00000101,00000110 ), and stuff like that. Some other non-alphanumeric characters begin with "001" such as "00100000" which is the BLANKSPACE character (much different then a NUL character).
The first three digits for the standard 26 letter english alphabet (capital letters only) begin with "010" and then the 5 digit sequence as defined above. The first three digits if the lower case numbers begin with "011".
SO, that means that the capital letter "A" in binary is...
NOT "1"
NOT "00001"
NOT "00000001"
BUT IS "01000001"
And since the length is always 8 for each BYTE/CHARACTER you know that you do not need the space or any delimeter after the first BYTE, so you go right into your next letter. Note that words are seperated naturally by including the BINARY notation for a space and not actually delimiting it with a space. BINARY is always one continuous string of characters.
Now look at the message below and decode it using this method. Don't post the answer here and ruin it for everyone, just post if you understand it.
0100001001001001010011100100000101010010010110010010000001010010010101010100110001000101010100110010000001000001
0100111001000100001000000101001101001111001000000100010001001111010001010101001100100000010001000100010001010000
Now, it is late, the stuff above is probably not as clear as I had hoped, but I will clean it up another time. Bedtime for Stanky!
________
EDIT by nick84: Not sure how people feel about others editing their posts is it “allowed”? - (hope you don’t mind SD)
Anyway I just split the long binary number you have onto two lines, because otherwise when people read the page they have to keep scrolling across and back because the 1 long continuous character string does not automatically get wrapped to a new line.












