How can I generate a PDF from HTML with Arabic language (client side)?

Viewed 1521

I worked with jsPDF and vue js to achieve export pdfs, it works fine but when I try Arabic characters it's not shown or shown not good.. so can anyone help it that?

1 Answers

You need add this line to document head section:

<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
Related