+ 5
Are there better ways to read binary??
Hi, i have been looking around for simple ways to read binary but i keep comming across this method which is great but im looking for somthing faster 0----128 1----64 0----32 0----16 0----8 0----4 0----2 1----1 64 + 1 = Ascii 65 'A'
3 Antworten
+ 7
Split it into hexadecimal. If you want an explanation (several reasons why I think this works with brains better), I'll elaborate -- but here's the quick version:
0100 0001 = 0x4 0x1 = 0x41 = 4*16 + 1 = 65
+ 2
thats how binary works, you can't read it any faster than that
+ 2
Hmm. Just wondering about "something faster".
BUT. When its only an ASCII Conversion for the alphabet, like u do.
When the BIT at Position 7 is set you can "see" your chosen one in the 5 digits at the beginning