So I'm trying to make a hiragana quiz but the console doesn't print the character. This is what the Console prints
This is my code. I have searched around but haven't found a solution. I be thankfull for any input or help.
class Program
{
static void Main()
{
List<Character> myHiraganaLibrary = new List<Character>();
myHiraganaLibrary = AddHiraganaCharacters();
Console.WriteLine("This is how you say hello in Japanese: こんにちは");
Console.ReadKey();