I’m consuming a webservice from my application in C# .net (2.0) that return values (as string) like this:
%23k.%0d%16%c4%8a%18%efG%28%b9c%12%b7%f1%e2%e7j%93
I know that the real value for that is:
236B2E0D16C48A18EF4728B96312B7F1E2E76A93
But I don’t know how to convert from the returned value to the real value.
Any thoughts?
Anyway, thanks for your time. Cheers.
Going down the line:
If you encounter ‘%’ copy the next two characters
Otherwise take the ascii code of the character found and output as hex
ASCII Table
But in code I’m pretty sure this will work: