Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re: lost in utf8

by ikegami (Patriarch)
on Oct 20, 2009 at 01:05 UTC ( [id://802125]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my $line = encode("utf8",$lineo);
    open(TEK,">:utf8","temp.tex");
    print TEK $line;
    
  2. or download this
    my $line = encode("utf8",$lineo);
    open(TEK,">","temp.tex");
    print TEK $line;
    
  3. or download this
    my $line = $lineo;
    open(TEK,">:utf8","temp.tex");
    print TEK $line;
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (5)
As of 2024-04-18 00:28 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found