First of all, depending on your browser, set its encoding format to "auto detect/Unicode" to ensure Unicode format used.
Firefox: View => Text Encoding => Auto Detect/Unicode
Chrome: Pop-out side menu => More tools => Encoding => Auto detect/Unicode
If the browser can't display those characters properly after encoding settings changed, set the meta tag on your Layout/view page as this to declare Chinese encoding GB-2312
:
<meta charset="GB2312" />
and/or use language attribute on html tag:
<html lang="zh-Hans">...</html>
Other way to change page language encoding on view page is using File => Save As, click the drop down arrow besides Save button to see Advanced Save Options
, then choose proper codepage for your page (by default it sets as Unicode (UTF-8 with signature) - Codepage 65001
.
Additional note: Ensure you have at least a Unicode font with CJK characters available on your system Fonts
directory.
Similar problem: how to display chinese character in HTML