Search the Community
Showing results for tags 'hex'.
-
Hi Thanks for your help I'll just describe what I want to do any advice or if you could provide your own example it would really help, thanks again! I have a string holding hex numbers "41495ab3edde720c" and I want to get those values out of the string and represent them as hexadecimal thus 0x41495ab3edde720c, then I want to xor that hex with another hex like 0x41495ab3edde720c ^ 0x1111111111111111 then I want to take the result which will be in this example (50584BA2FCCF631D) and turn it back into a string "50584BA2FCCF631D" I'm not that good with php it seems hard to do this easily?
-
HI, I want to write a code to convert each character of user enetered data to its equivalent four digit hexadecimal value. eg : if user enters "Hi i am good" convert H to its four digit hexadecimal convert i to its four digit hexadecimal convert blank to its four digit hexadecimal and so on. any suggestions would be great. Many thanks.