How to assign to string the japanese word ネコ in C#

1 Answer

0 votes
using System;

class Program
{
    static void Main()
    {
        string japaneseWord = "ネコ"; // cat
        
        Console.WriteLine(japaneseWord);
    }
}

   
   
/*
run:

ネコ
   
*/

 



answered Apr 19, 2025 by avibootz
...