Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re^3: Encode double encoding?

by farang (Chaplain)
on May 23, 2014 at 18:59 UTC ( [id://1087254]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Encode double encoding?
in thread Encode double encoding?

What would I have to do to be able to use "s\x{c3}\x{bc}\x{c3}\x{9f}e" as though it were "s\xc3\xbc\xc3\x9fe" ?

I'm not sure what else is going on, but those strings are equivalent.

perl -MO=Deparse -e 'print "s\xc3\xbc\xc3\x9fe"' perl -MO=Deparse -e 'print "s\x{c3}\x{bc}\x{c3}\x{9f}e"'
Both parse the same:
print "s\303\274\303\237e"; -e syntax OK
I wonder if you have standard output encoded correctly. Maybe adding this will help.
binmode STDOUT, ':utf8';

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1087254]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (5)
As of 2024-03-28 17:11 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found