Last active
August 29, 2015 14:09
-
-
Save parabola949/18d68b215693f76fbfe0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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