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
SFDC coderSFDC coder 

Other language characters not supported in PDF's

Hi all,

I have an VF email template where in i receive an attachment.
My email encoding setting and  email template properties is set to unicode utf 
I am able to get the email in correctly but in pdf's the field containing korean charactes get displayed as" () "

What can be the issue?
 
SFDC coderSFDC coder
Solved this by using below css style
 body { font-family: Arial Unicode MS; } . However the pdf attachment filename consists of a merge field that contain some characters which are not suported .How do i solve this?
Ashish_Sharma_DEVSFDCAshish_Sharma_DEVSFDC
Hi ,

Please refer Visualforce pdf limitations.
https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_output_pdf_considerations.htm

Let us know if it helps you.
SFDC coderSFDC coder
Hi ashish,

There is nothing specific to filename of pdf attachment that i am looking for. do you have any idea as to how to display such characters in the filename of the pdf attachment?

Many thanks..