Blog
Multi-lingual support for HTML to PDF (wkhtmltopdf / Headless Chrome)
Intro – HTML to PDF with Multiple Languages
A frequent question we receive at API2PDF is if it is possible to generate PDFs with foreign languages, or languages that contain special characters in their text. The answer is yes, and it is possible to support these languages in both wkhtmltopdf and Headless Chrome rendering engines.
Include Special Language Characters in PDFs
We support most of what is supported by unicode characters, or UTF-8. The trick is to include <meta charset=”UTF-8″> in the <head> section of your HTML. If you do this, unicode characters should properly appear. We ran a test by copying and pasting the HTML below into the Try It Out section on the home page of api2pdf.com which uses Headless Chrome.
<html style="color:green;">
<head>
<meta charset="UTF-8">
</head>
<body>
<p>Ç'është Unicode?, in Albanian (36 letters)</p>
<p>ما هي الشفرة الموحدة "يونِكود" ؟ in Arabic (36 letters)</p>
<p>Ի՞նչ է Յունիկոդը ? in Armenian(36 letters)</p>
<p>Какво е Unicode ? in Bulgarian (30 letters)</p>
<p>什麽是Unicode(統一碼/標準萬國碼)? in Trad'l Chinese</p>
<p>什么是Unicode(统一码)? in Simplified Chinese</p>
<p>Što je Unicode? in Croatian (30 letters)</p>
<p>Co je Unicode? in Czech (48 letters)</p>
<p>Hvad er Unicode? in Danish(29 letters)</p>
<p>Wat is Unicode? in Dutch(26 letters)</p>
<p>Kio estas Unikodo? in Esperanto(31 letters)</p>
<p>Mikä on Unicode? in Finnish(29 letters)</p>
<p>Qu'est ce qu'Unicode? in French</p>
<p>რა არის უნიკოდი? in Georgian</p>
<p>Was ist Unicode? in German</p>
<p>Τι είναι το Unicode; in Greek (Monotonic)</p>
<p>Τί εἶναι τὸ Unicode; in Greek (Polytonic)</p>
<p>מה זה יוניקוד (Unicode)? in Hebrew</p>
<p>Mi az Unicode? in Hungarian</p>
<p>Hvað er Unicode? in Icelandic</p>
<p>Gịnị bụ Yunikod? in Igbo</p>
<p>Que es Unicode? in Interlingua</p>
<p>Cos'è Unicode? in Italian</p>
<p>ユニコードとはか?in Japanese</p>
<p>유니코드에 대해? in Korean</p>
<p>Kas tai yra Unikodas? in Lithuanian</p>
<p>Што е Unicode? in Macedonian</p>
<p>X'inhu l-Unicode? in Maltese</p>
<p>Unicode гэж юу вэ? in Mongolian</p>
<p>Unicode, qu'es aquò? in Occitan</p>
<p>يونیکُد چيست؟ in Persian</p>
<p>Czym jest Unikod? in Polish</p>
<p>O que é Unicode? in Portuguese</p>
<p>Ce este Unicode? in Romanian</p>
<p>Что такое Unicode? in Russian</p>
<p>Šta je Unicode? in Serbian (Latin)</p>
<p>Шта je Unicode? in Serbian</p>
<p>Kaj je Unicode? in Slovenian</p>
<p>¿Qué es Unicode? in Spanish</p>
<p>Vad är Unicode? in Swedish</p>
<p>Unicode คืออะไร? in Thai</p>
<p>Що таке Юнікод? in Ukrainian</p>
<p>Što je Unicode? in Upper Sorbian</p>
<p>Evrensel Kod Nedir? in Turkish</p>
<p>Unicode là gì? in Vietnamese</p>
<p>Beth yw Unicode? in Welsh</p>
<p>ﻳﯘﻧﯩﻜﻮﺩ ﺩﯨﮕﻪﻥ ﻧﯩﻤﻪ؟ in Uyghur</p>
<p>Unicode dégen néme? in Uyghur (Latin)</p>
<p>Unicode là gì? in Vietnamese</p>
<p>Beth yw Unicode? in Welsh</p>
<p>
😀 😃 🙂 🫠 (Emojis)</p>
</body>
</html>
Under the hood
API2PDF is running on Alpine Linux and has installed the most common fonts to cover as many languages as possible including emojis! Here is the list.
What is API2PDF?
API2PDF is a web service that helps you generate PDF files at massive scale. Convert HTML to PDF, Web Pages to PDF, MS Office files to PDF, and merge PDFs together. Grab an API key from here and check out our documentation to get started in minutes!