in reply to Encoding Problem - UTF-8 (I think)
open my $FH, '<:encoding(UTF-8)', 'filename.txt' or die $!; # ~~~~~~~~~~~~~~~~
Unpacking how? There are various templates you can use.
Update:
Yes, that's it:
#! /usr/bin/perl use warnings; use strict; use feature qw{ say }; use Encode; my $s = encode('UTF-8', "\N{MIDDLE DOT}"); say join ' ', unpack "C*", $s;
($q=q:Sq=~/;[c](.)(.)/;chr(-||-|5+lengthSq)`"S|oS2"`map{chr |+ord }map{substrSq`S_+|`|}3E|-|`7**2-3:)=~y+S|`+$1,++print+eval$q,q,a,
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Encoding Problem - UTF-8 (I think)
by Melly (Chaplain) on Dec 15, 2015 at 17:02 UTC | |
by BrowserUk (Patriarch) on Dec 15, 2015 at 17:23 UTC | |
by Anonymous Monk on Dec 15, 2015 at 17:42 UTC | |
by BrowserUk (Patriarch) on Dec 16, 2015 at 12:30 UTC | |
by Anonymous Monk on Dec 16, 2015 at 13:36 UTC | |
| |
|
Re^2: Encoding Problem - UTF-8 (I think)
by Melly (Chaplain) on Dec 15, 2015 at 17:25 UTC |