> From: Takaaki Ishikawa <[email protected]> > Date: Tue, 12 Mar 2019 12:42:39 +0900 > Cc: Robert Pluim <[email protected]>, Eli Zaretskii <[email protected]>, > "[email protected]" <[email protected]> > > Have you tried to use `set-local-environment'? > I usually use the command to change the date formatting in my init.el as > follows: > > (set-locale-environment "en_US.UTF-8") ;; "ja_JP.UTF-8"
You are on GNU/Linux, right? Because the above will not work on Windows, because UTF-8 os not reliably supported, not even in Windows 10 (which added some improvements in that area). But perhaps this could help: (set-language-environment "Chinese-Big5") However, it's possible that even this will not help, unless the system codepage is changed to something that can support Chinese.
