First you need to make sure that the font you're using actually supports the unicode letters that you want to use.
Then you need to make sure to use L"" as you do for your first string.
And finally, if you set the encoding of your source code file to UTF-8, you should be able to use the characters directly in your strings, so no &#<number> encoding anymore.