Skip to content

Instantly share code, notes, and snippets.

@haacked
Created January 30, 2012 06:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save haacked/1702906 to your computer and use it in GitHub Desktop.
Save haacked/1702906 to your computer and use it in GitHub Desktop.
Round Tripping UTF-8
using System;
using System.Text;
class Program
{
static void Main(string[] args)
{
var data = new byte[] { 128 };
string text = Encoding.UTF8.GetString(data);
var bytes = Encoding.UTF8.GetBytes(text);
Console.WriteLine("Original:\t" + String.Join(", ", data));
Console.WriteLine("Round Tripped:\t" + String.Join(", ", bytes));
Console.ReadKey();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment