Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- public class Program
- {
- public static void Main()
- {
- Byte[] nameByte = { 0x42, 0x61, 0x67, 0x67, 0xEF };
- String name = System.Text.Encoding.UTF8.GetString(nameByte);
- Console.WriteLine(name);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement