Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

SOLVED Re: Writing HTML file with UTF-8 chars

by cormanaz (Deacon)
on Apr 27, 2013 at 18:33 UTC ( [id://1030999]=note: print w/replies, xml ) Need Help??


in reply to Writing HTML file with UTF-8 chars

The solution was
  • Add use utf8;
  • add binmode OUT, ":utf8"; after the file open
  • Do not use encode() on the values
Thanks for the comebacks everyone.

Replies are listed 'Best First'.
Re: SOLVED Re: Writing HTML file with UTF-8 chars
by 2teez (Vicar) on Apr 27, 2013 at 18:57 UTC

    On the second point: add binmode OUT, ":utf8";after the file open

    I think is better, to use binmode OUT, ":encoding(UTF-8)"; because ':encoding(UTF-8)'checks the data for actually being valid UTF-8, while ':utf8' just marks the data as UTF-8 without further checking.
    Please check binmode.

    If you tell me, I'll forget.
    If you show me, I'll remember.
    if you involve me, I'll understand.
    --- Author unknown to me

Log In?
Username:
Password:

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

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

    No recent polls found