could someone help me with what type code this is
i was wondering if someone could point me in the right direction as to what type code this is and how u can generally tell im trying to learn?
2E 3E 55 5B 5A 4E 41 43 76 7E 7D 7B 62 6E 69 93 A8 9E B3 BB BC 8E 87 83 90 9E 9B 9B E4 EF F3 D2 FE E9 DB E6 CE FD C3 0A 3E 01 3B 1E 2E 15 13 58 1E 43 7B 4C 0E 37 03 20 1E 2B 1B 14 2E 1F 33
NVIOUS62 wrote: i was wondering if someone could point me in the right direction as to what type code this is and how u can generally tell im trying to learn?
2E 3E 55 5B 5A 4E 41 43 76 7E 7D 7B 62 6E 69 93 A8 9E B3 BB BC 8E 87 83 90 9E 9B 9B E4 EF F3 D2 FE E9 DB E6 CE FD C3 0A 3E 01 3B 1E 2E 15 13 58 1E 43 7B 4C 0E 37 03 20 1E 2B 1B 14 2E 1F 33
hex.
yeah quite simple, just take the hex values calculate it into Denary (thats numbers 0123456789) then you take that denary value and convert it into Binary.
Like.. for isntance… 137 in binary would be…
[workings out to show its possible doing it by hand] 128 8 1 128 64 32 16 8 4 2 1 1 0 0 0 1 0 0 1 [end workings out]
137 would be: 10001001 in binary.
Same applies to Hex, except its a different method. divide each HEX code into 2 charachters. we'll use the example hex: 89
workings out: 8 9 8 = 8 4 2 1 1 0 0 0 9 = 8 4 2 1 1 0 0 1 end workings out: 89 hex = 10001001 in binary.
Then you take that binary number you got a assign its AplhaNumerical value to it. Now if i look it up a sec…. ah, cant find my computing book. well anyway, each 8bit binary number can be assigned a ASCII character . So you do that for each HEX code and you'll work out what it is in ASCII.
ASCII = A - Z a-z 0-9 #';[] etc etc etc
but obvioulsy thats the long way to do it, im sure theres some HEX convertors out there, if not wouldnt be too hard to code one yourself.