I have some code that's returning a null symbol when I try to add unicode to it, anyone know why?
string first = "\uD83D\uDC4A\uD83D\uDC4A\uD83D\uDC4A";
for (int i = 0; i < 20; i++)
{
Console.Write(first[i % 3] + "\r");
Thread.Sleep(100);
}
Console.WriteLine("\n");
I'm basically trying to get 3 emojis to changing rapidly, in one character of text, but it's returning null when I use unicode characters.