string int2hex(int x)
Same as sprintf("%x",x);, i.e. returns the integer x in hexadecimal base using lower cased symbols.
sprintf("%x",x);
sprintf()