ASCII characters 146-147-148 (� � � ) not displayed properly

Rendering ASCII characters 146,147,148 to word shows:
’
“
”

We are using version 6.6 of aspose.words.
Thanks,
Carl

Hi

Thanks for your request. Could you please provide me sample code, which will allow me to reproduce the problem on my side? I use the following code and all works fine:

Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.Write("’ “ ”");
doc.Save(@"Test001\out.doc");

Best regards.

Running that test works I’ll dig through the rest of the code and see if I can identify the issue.
Thanks,