在 Nreco 中没有发生中国货币的转换

Conversion is not happening in Nreco for Chinese currency

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

CNY(¥) Cost 

转换为

CNY(Â¥) Cost

下面是我用于转换的代码。

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

确保您在 HTML 模板中使用 meta-tag:

指定了 UTF-8 编码
<head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
</head>