<< Click to Display Table of Contents >> Hex operations library |
![]() ![]() ![]() |
hextoint(Input) - converts hex value into integer.
inttohex(Input) - converts integer value into hex.
Example:
string a = inttohex(255);
print(a);
Response:
a = "ff";