function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
L.DelanoL.Delano 

Display Chinese characters on a visualforce page

I have a text field on Account object which on the standard salesforce pages displays Chinese characters correctly, but when I add the same field on a visualforce page, Chinese text is replaced by question marks.
I’m assuming I need to load additional fonts on the page, but I’m not certain what the solution is.
Does anyone have any suggestion?
 
kumud thakur 20kumud thakur 20
Can you try with language attribute of visualforce page. May be it will work

<apex:page language="zh">
........
</apex:page>
L.DelanoL.Delano
That changed all the standard tabs labels to Chinese, and did not solve the problem with the text field.