convert byte array to string online code example
Example 1: convert byte array to string
byte[] byteArray1 = { 80, 65, 78, 75, 65, 74 };
String str = new String(byteArray1, 0, 3, StandardCharsets.UTF_8);
Example 2: convert array byte to string 64
byte[] temp_backToBytes = Convert.FromBase64String(temp_inBase64);