Are there better ways to read binary?? | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
+ 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'

18th Jan 2018, 5:20 PM
D_Stark
D_Stark - avatar
3 Réponses
+ 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
18th Jan 2018, 6:44 PM
Kirk Schafer
Kirk Schafer - avatar
+ 2
thats how binary works, you can't read it any faster than that
18th Jan 2018, 5:27 PM
Jeremy
Jeremy - avatar
+ 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
18th Jan 2018, 6:00 PM
I. Stark
I. Stark - avatar