On Monday, October 16, 2017, Juha Manninen via Lazarus <<a href="mailto:lazarus@lists.lazarus-ide.org">lazarus@lists.lazarus-ide.org</a>> wrote:<br>> On Mon, Oct 16, 2017 at 4:43 PM, Martok via Lazarus<br>> <<a href="mailto:lazarus@lists.lazarus-ide.org">lazarus@lists.lazarus-ide.org</a>> wrote:<br>>> when I checked what HTML2TextRenderer uses to translate list items, I found that<br>>> since rev 55743 it uses U+26AB MEDIUM BLACK CIRCLE ⚫ and U+26AA MEDIUM WHITE<br>>> CIRCLE ⚪.<br>><br>> No. Since r55743 it uses one of the star emojis.<br>> See in constructor THTML2TextRenderer.Create:<br>>   fListItemMark:='✶ ';<br>>   //fListItemMark:='✳ ';<br>>   //fListItemMark:='✺ ';<br>>   //fListItemMark:='⚫ ';<br>>   //fListItemMark:='⚪ ';<br>><br>> I left the other potential choises in comments there for easy comparison.<br>><br>>> Could someone please test this on other widgetsets,<br>><br>> It is not related to widgetsets anyhow. It only depends on the font<br>> your system uses.<br>> I also had problems seeing Unicode emojis on Windows but never on Linux distros.<br>> To my surprise some fellow Lazarus developers complained they don't<br>> render properly in their Linux systems. That is why I changed the<br>> title emoji from a small diamond (outside BMP) to a big diamond<br>> (belongs to BMP). For some reason their fonts support it better.<br>><br>>   //fTitleMark:='🔹';     <-- this did not show in some people's system.<br>>   //fTitleMark:='◆';<br>>   //fTitleMark:='◇';<br>>   fTitleMark:='◈';<br>>   //fTitleMark:='◊';<br>><br>> The stars and circles mentioned earlier belong to BMP.<br>><br>>> so I have an idea whether/what/where to report this?<br>><br>> Report to your OS manufacturer / project.<br>> In case of Windows: Microsoft.  Let's see how quickly they fix it.<br>> In any case those widely used Unicode emojis really must be supported.<br>> There is no excuse.<br>><br><br>Is it not possible to bundle supported resources in the LCL? That seems like the typical solution for Windows. On other OSes this is less proper, but I have still seen it done.<br><br>R0b0t1.