9951 explained code solutions for 126 technologies


luaConvert hex to string


string.format("%#x", 0xaf)ctrl + c
string.format

formats string with a given set of rules

%#x

treat given variable as hex number

0xaf

hex value to convert to string