How to convert HTML Text to Word not converting HTML File

Good morning,
How to convert HTML Text to Word not converting HTML File to word,
Can you give me an example.
Thanks and best regrad,

Hi Sam,

Thanks for your inquiry. Please try using the following code:

Document doc = new Document(); 
DocumentBuilder builder = new DocumentBuilder(doc);
builder.InsertHtml("<p style=\"font-family:arial;\">Non&#8209;breaking hyphen</p>", true); 
doc.Save(MyDir + @"16.5.0.docx");

Best regards,

thank you very much and best regards,