How do I print UInt8 in hex format?

Was curious if it was possible to print bytes in hexadecimal format, I want to see '0xFF' format in the console.
A python equivalent would be print('{:02x}'.format(x)), is this possible in mojo right now?
Was this page helpful?