converts a positive integer value into a string consisting of hexadecimal digits
The optional second parameter specifies the minimum length of the resulting string. If there are fewer hexadecimal digits than the specified length, the string is left-padded with zeros.
std::bin | converts a positive integer value into a string consisting of binary digits |
std::oct | converts a positive integer value into a string consisting of octal digits |
std::to_string | returns a human readable presentation of the object |