Help for this page
my $unicode_character_hexadecimal_string = '0x20ac';
my $unicode_hex_codepoint = 0x20ac;
'0xE2 0x82 0xAC'
my $unicode_char = chr( $unicode_hex_codepoint );
'0x62 0x02 0x2C'
use strict; ... printf( "%s == %04x == %s == %s ^^ %s == %s\n", $uni_chr, $uni_hex, $u8_byts, $u8_bits, $strpd_byts, $strpd_bi +ts );