Originally posted by Nilsen
Knowing the fairly simple morsecode system i have taken it upon myself to learning the binary system
i have 12 letters and "space" symbol (00100000) memorised now but i think the big problem is gonna start when i get to symbols.. i know its completly useless knowledge but its kinda fun to know 
anyone else here know it?
Let's be clear here. There are no letter or symbols in binary. Binary is simply a way of representing numbers as powers of 2.
To get from binary to letters and symbols you need to introduce some standard encoding system, like ASCII - which uses an eight-bit byte to encode letters, numbers and symbols.
ASCII is what the PC was based on, but EBCDIC was the standard for mainframe computing.
Nowadays, what with internationalization being important and the ASCII character set being limited, multi-byte Unicode encoding is the main stream - at least at the application layer.