Skip to content

Instantly share code, notes, and snippets.

@parabola949
Last active August 29, 2015 14:09
Show Gist options
  • Save parabola949/18d68b215693f76fbfe0 to your computer and use it in GitHub Desktop.
Save parabola949/18d68b215693f76fbfe0 to your computer and use it in GitHub Desktop.
using System;
using System.Text;
namespace test
{
class Program
{
static void Main(string[] args)
{
var utf8 = new UTF8Encoding();
Console.WriteLine(String.Join(",",utf8.GetBytes(";")));//Normal
//59
Console.WriteLine(String.Join(",",utf8.GetBytes(";")));//Greek question
//205,190
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment