How to insert a sumbol into a document

What is the best way to insert a symbol into a aspose word document?

Lookup the character code in MS Word Insert/Symbol dialog box.

Select the font you need using DocumentBuilder.Font.Name and insert the character suing DocumentBuilder.Write.

builder.Font.Name = “Symbol”;
builder.Write("\x00c4");