The problem with fonts after converting HTML to PDF

Hi.
I want to convert html to pdf, but as a result the font is shown as diamonds.
What do I need to do to get readable text in pdf
An example html file and the resulting pdf attached.

            StreamReader r = File.OpenText(@"e:\Temp\digital_original.html");
            MemoryStream stream1 = new MemoryStream(System.Text.Encoding.UTF8.GetBytes(r.ReadToEnd()));

            HtmlLoadOptions options = new HtmlLoadOptions { InputEncoding = "utf-8" };

            using (Document pdfDocument = new Document(stream1, options))
            {
                PdfSaveOptions pdfSaveOptions = new PdfSaveOptions();
                pdfDocument.Save(@"e:\Temp\digital.html.pdf", pdfSaveOptions);
            }

digital_original.zip (266.2 KB)

I realized what my mistake was - I saved the HTML file in ANSI.
After saving the file in UTF-8, the conversion was successful - the text is readableя

@PoweRDeaD

Its nice to know that you have figured the issue out. Please keep using the API and feel free to create a new topic in case you need any kind of assistance.