When I export the following Graphics expression as a PDF (or EPS) file, the Turkish characters ü and ç do not appear.
Graphics[Text[Style["Türkçe", 72, Background -> White], {0, 0}]]
Is it possible to fix this?
Here is how it looks in PDF file.

Export["turkce2.pdf", Graphics[Text[Style[StringJoin[FromCharacterCode[#, "MacintoshTurkish"] & /@ {84, 159, 114, 107, 141, 101}], 72, Background -> White], {0, 0}]]]? – kguler Dec 25 '12 at 13:35