How initialize a string with japanese word in C#

1 Answer

0 votes
using System;

class Program
{
    static void Main() {
        string s = "こんにちは"; // Kon'nichiwa // hello

        Console.Write(s);
    }
}



/*
run:

こんにちは

*/

 



answered Feb 13, 2023 by avibootz

Related questions

1 answer 111 views
1 answer 107 views
1 answer 126 views
1 answer 110 views
1 answer 129 views
1 answer 128 views
...