Skip to content

Instantly share code, notes, and snippets.

View GitHubber10's full-sized avatar

Markus Nakhlah GitHubber10

  • More Success Marketing GmbH
View GitHub Profile
anonymous
anonymous / Mongolian vowel separator
Created November 26, 2014 13:43
// What's the output of this code, and how confident are you?
// What might affect the result?
class Test
{
static void Main()
{
string stringx = "a";
string\u180ex = "b";
System.Console.WriteLine(stringx);
}