Hex value representation & manupulation
Hi;
I want to write hex values on a URL. So I want to know how the hex values can be represented in Java. Does it mean I compose a string with hex values and write it.
{noformat}<code class="jive-code jive-java">String data = {color:red}"0x820x440xB40x2E0x390x390x390x390x390x350x830xD1"{color};
</code>{noformat}
<ul><li>
0x is necessary prefix for hex values and in java it is also used?</li>
<li>
If I print this string to console, should it prints special characters? (which is not, it prints as it is) </li>
</ul>
I hope you will give me some pointer to process hex values in Java.
Thanks.