9951 explained code solutions for 126 technologies


luaConvert int to hex


hex = string.format("%x", num)ctrl + c
num

integer to convert to hex

string.format

formats string with a given set of rules

"%x"

present given integer in its hex form

hex

will contain converted hex