public static void Main()
Console.WriteLine("Create a UTF-16 encoded string from a code point.");
string s1 = letterA.ConvertFromUtf32();
Console.Write(" 1a) 0x{0:X} => ", letterA);
private static void Show(string s) {
for (int x = 0; x < s.Length; x++)
Console.Write("0x{0:X}{1}", (int)s[x], ((x == s.Length-1)? String.Empty : ", "));