byte format:X4
using System; class MainClass{ public static void Main(){ byte[] byteValues = { 12, 163, 255 }; foreach (byte byteValue in byteValues) Console.WriteLine(byteValue.ToString("X4")); } } /* 000C 00A3 00FF */