Encoding the string as utf8 does not seem to improve the situation as can be seen at line 3 in the following code and the corresponding line 3 of the attached screen shot:
$g->DrawText("Hello", 400, 400);
$g->DrawText("𝝰𝝱𝝲𝝱𝝰", 400, 450);
$g->DrawText(encode('UTF-8', "𝝰𝝱𝝲𝝱𝝰"), 400, 500);
On Mon Nov 28 16:31:07 2016, jvromans@squirrel.nl wrote:
Show quoted text> On Mon, 28 Nov 2016 15:41:01 -0500, "Philip R Brenan via RT"
> <bug-Wx@rt.cpan.org> wrote:
>
> > my $f = Wx::Font->new("Noto Mono 24");
> > my $g = Wx::PaintDC->new($panel);
> > $g->SetFont($font);
> > $g->DrawText("Hello", 400, 400);
> > $g->DrawText("𝝰𝝱𝝲𝝱𝝰", 400, 450);
>
> You did 'use utf8', I assume?
>
> -- Johan