Unicode character in table cell while keeping the font for the normal text

I add a table to a pdf document and I want to print a unicode character in one cell with additional text. The problem is as soon as I add the unicode character the font is changed for the whole TextFragment.

row = table.Rows.Add();
row.FixedRowHeight = 18;
text = new TextFragment();
if (titel.Zustellungsnachweis)
{
    text.Segments.Add(new TextSegment("\u2612"));
}
else
{
    text.Segments.Add(new TextSegment("\u2610"));
}
var segment = new TextSegment(" additional Text");
segment.TextState.FontStyle = FontStyles.Bold;
segment.TextState.Font = fonts[3];
text.Segments.Add(segment);
var cell = row.Cells.Add();
cell.Paragraphs.Add(text);

If I dont add the TextFragment to the table but as a seperate Segment after the table, the additional Text keeps its font. Only inside the table cell it changes the font for the whole TextFragment.

The TextFragment is in the last row of the table. I want it inside the table because it’s the easiest way to get a border around the table and the TextFragment.

@abefl

Would you please share the generated output PDF using above code snippet with us along with the screenshot of the fonts settings that you see in Adobe Reader?

Sure. the last page is the one I added. test.pdf (820,6 KB)
Fonts.PNG (17,2 KB)

@abefl

We have opened the following new ticket(s) in our internal issue tracking system and will deliver their fixes according to the terms mentioned in Free Support Policies.

Issue ID(s): PDFNET-55639

You can obtain Paid Support Services if you need support on a priority basis, along with the direct access to our Paid Support management team.

Thank you, looking forward to it!