Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: Simplest Possible Way To Disable Unicode

by graff (Chancellor)
on May 23, 2011 at 23:37 UTC ( [id://906382]=note: print w/replies, xml ) Need Help??


in reply to Simplest Possible Way To Disable Unicode

If you show a little more code, esp. how your perl script opens the output file, that may help. Your perl upgrade might be interacting with your current shell environment regarding "locale", What version were you using the last time it worked? What version did you upgrade to? In what OS?

Then, maybe a sample of the output you expect (e.g. as a snippet hex dump from a good file), along with a sample of what your upgraded perl is producing (also as a hex dump snippet).

Till then, there's nothing much we can do...

Update: BTW,the way to avoid unicode "interpretation" on output is to open the output file like this:

open( my $outfh, '>:raw', $filename ) or die "$filename: $!\n";
(but if the data you print to the output file handle has somehow been flagged as utf8 text, you might get a warning about that)

Replies are listed 'Best First'.
Re^2: Simplest Possible Way To Disable Unicode
by ikegami (Patriarch) on May 24, 2011 at 00:47 UTC
    Making sure the handle won't distort bytes sent to it won't help since the problem is that it's not bytes being sent to it.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (4)
As of 2024-04-25 23:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found