0

I was developing MVC3 application. In my Application, there will be a number of Chinese and Japanese characters. When showing those characters on the webpage I was getting some weird characters appears on the screen instead of Chinese or Japanese characters. Can anyone tell me how can i show above mentioned language characters without any issue on the page.

I have Tried the below way

font-family: Arial Unicode MS, Arial, Helvetica, sans-serif;  // But this way didn't help me out.

Thanks

UniqueChar
  • 195
  • 2
  • 2
  • 13

1 Answers1

0

If you're using ISO character sets, you need to use the right one for these languages Character Sets

Or you can just simply set character set to UTF-8 and not worry about the language on the page it self. If you're still seeing weird characters, might be that you somehow overwrite the encoding, or perhaps have a malformed HTML code.

Cheers, Deadpool

Slobodan Antonijević
  • 2,533
  • 2
  • 17
  • 27