Advertisement
Guest User

Untitled

a guest
May 7th, 2017
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.23 KB | None | 0 0
  1. using System;
  2.                    
  3. public class Program
  4. {
  5.     public static void Main()
  6.     {
  7.         Byte[] nameByte = { 0x42, 0x61, 0x67, 0x67, 0xEF };
  8.         String name = System.Text.Encoding.UTF8.GetString(nameByte);
  9.         Console.WriteLine(name);
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement