I'm curious as to if it'd be possible to convert a very, very large decimal number such as 1.67119535743*10^33/1.67119535743E+33 to hexadecimal via PHP or C#. All my previous attempts have failed, unfortunately. Thanks to all in advance!
|
|
|||
|
|
|
Do you mean, convert it to a hex string? You might look at bigint libraries, like this one on CodeProject.
|
||
|
|
|
|
I presume you're storing the number as a byte array, and want to output the hex number as a string? This should do the job in C#:
|
||
|
|
