
7stud
Enthusiast
Jan 16, 2013, 4:09 PM
Post #8 of 11
(3238 views)
|
Re: [orange] convert utf8 -> iso-8859-2
[In reply to]
|
Can't Post
|
|
iso-8859-2 is a one byte encoding, i.e. all the characters can be represented by numbers in the range 0-255. What number does iso-8859-2 use to represent "small letter i with diaeresis(umlaut)" (that is what I am seeing in your string)? Also, what is the output when you run this:
my $string = 'helloļ'; printf "%*vX", " ", $string; print "\n";
(This post was edited by 7stud on Jan 16, 2013, 4:16 PM)
|