in reply to Unexpected behavior of Perl on non-breaking space in Mac environment
#! /usr/bin/perl use warnings; use strict; use feature qw{ say }; use utf8; my $string = qq(issue: "Problém s\N{NO-BREAK SPACE}odesláním"); binmode *STDOUT, ':encoding(UTF-8)'; say $string;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Unexpected behavior of Perl on non-breaking space in Mac environment
by hishii2001 (Novice) on Apr 20, 2022 at 14:26 UTC | |
by etj (Priest) on Apr 20, 2022 at 18:34 UTC |