Another couple of examples to work from
Serial.printf("%02X ",Byte1); // prints "01 " ie the hex value with a trailing space
Serial.printf("%02X %02X %02X %02X %02X %02X %02X %02X ",Byte1, Byte2, Byte3, Byte4, Byte5, Byte6 ,Byte7, Byte8); // Prints "01 02 03 04 05 06 07 08 "...