Hi,
When I try to insert the following character (Ø) into a word document, it is replaced by a number. I am just using inserthtml with text containing this character.
Aspose.Words 9.3.0.0
Thanks.
Hi,
When I try to insert the following character (Ø) into a word document, it is replaced by a number. I am just using inserthtml with text containing this character.
Aspose.Words 9.3.0.0
Thanks.
Hello
Thanks for your request. Please try using the following code to achieve what you need:
// Create new document and DocumentBuilder
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Insert symbol
builder.Writeln("Ø");
// Or you can use the following way
builder.InsertHtml("Ø");
doc.Save(@"C:\Temp\out.doc");
Best regards,