on https://play.nim-lang.org/
echo fmt"{5:02x}" Run
echo fmt"{5:02x}"
05 Run
05
while
echo fmt"{5:#02x}" Run
echo fmt"{5:#02x}"
0x5 Run
0x5
0x05 Run
0x05
import std/strformat echo fmt"0x{5:02X}"