I encountered an issue with the Avalonia Previewer where Unicode characters (specifically U+1F5D5) were not rendered properly. The Previewer would not display correctly when trying to use this character.
1 Answer
The issue is related to the default font used by the Previewer, which did not support this Unicode character. To fix the issue, applie the following style to the Window:
<Window.Styles>
<Style Selector="Window">
<Setter Property="FontFamily" Value="Segoe UI" />
<Setter Property="FontSize" Value="12" />
</Style>
</Window.Styles>