using System;
class Program
{
static void Main()
{
try {
byte[] barr = {71, 73, 70, 56, 57, 97, 8, 32, 10, 32, 112, 32, 32};
string hex = BitConverter.ToString(barr);
hex = hex.Replace("-", " ");
Console.WriteLine(hex.ToString());
}
catch (Exception ex) {
Console.WriteLine(ex.Message);
}
}
}
/*
run:
47 49 46 38 39 61 08 20 0A 20 70 20 20
*/