Use this 2 functions:
sub latin1_to_utf8 {
return( pack( 'U*', unpack("C*", @_[0] ) ) );
}
sub utf8_to_latin1 {
return( pack("C*", unpack("U*",@_[0]) ) );
}
Will be better if you use the modules utf8:: or Encode::. But the advantage of this 2 functions is that they works on Perl 5.6 standart, don't need to upgrade it with new modules. If you are using Perl 5.8 use utf8::, take a look in pod, at 'perlunicode' and 'utf8 manpage' (I dont put any link here because this change a lot between the version of Perl, see your release).
Don't use this:
tr///UC;
This doesn't work anymore!
* I made the changes like IlyaM says!
"The creativity is the expression of the liberty".
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.