Nreco没有进行中文货币的转换

时间:2019-05-14 21:44:02

标签: c# wkhtmltopdf pdf-conversion nreco

我正在使用NRECo将HTML字符串转换为字节以进行pdf转换。一切正常,但使用字符串,当我插入中文货币符号(¥)但转换后,我看到Â¥。我该如何解决这个问题?

CNY(¥) Cost 

转换为

CNY(Â¥) Cost

下面我用于转换的代码。

var converter = new NReco.PdfGenerator.HtmlToPdfConverter();
   var pdfBytes = converter.GeneratePdf(html);
   return pdfBytes; 

1 个答案:

答案 0 :(得分:1)

确保已在带有元标记的HTML模板中指定了UTF-8编码:

<head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
</head>