using System.Collections.Generic;
public static void Main()
Console.WriteLine("Hello World");
var chars = GetCharacters(@"sdf
asdf๐123๐จโข๐ฉโข๐งโข๐ฆ");
public static List<string> GetCharacters(string text)
char[] ca = text.ToCharArray();
List<string> characters = new List<string>();
for (int i = 0; i < ca.Length; i++)
if (char.IsHighSurrogate(c))
characters.Add(new string(new[] { c, ca[i] }));
characters.Add(new string(new[] { c }));