Hello all, i am trying to convert a string of hexadecimal numbers to decimal numbers. the problem is, the string i get is hexadecimal under hex display. under normal display it's bunch of weird stuff. for example: under hexadcimal display of string indicator, i get 01 86A0 which is 16^4*1+16^3*8+16^2*6+16^1*10+16^0*0=100000 in decimal. but the normal display of this string shows a squarebox and a cross . † something like that. so when i tried to simply convert hexadecimal string to number, it obviously didn't work. one possible cause to this problem is because string '1' has hex value of 31, instead of 01. and so on for the other numbers.
a normal displayed version of string 186A0 can easily be converted to 100000. how do i convert such in my case?
thank you for all your help!