in reply to Re^7: XML:: DOM and Accented Characters
in thread XML:: DOM and Accented Characters

I'm afraid you've lost me now. The page for small e-acute from the same site you link to gives:-

http://www.fileformat.info/info/unicode/char/e9/index.htm

Name LATIN SMALL LETTER E WITH ACUTE

UTF-8 (hex) 0xC3 0xA9 (c3a9)

I've also been using this table

http://www.utf8-chartable.de/

What am I missing or are we talking about different things

  • Comment on Re^8: XML:: DOM and Accented Characters

Replies are listed 'Best First'.
Re^9: XML:: DOM and Accented Characters
by Anonymous Monk on Aug 07, 2010 at 13:02 UTC
    I see now I was using wrong input to perl string
    $ perl -e" binmode STDOUT,q!:encoding(UTF-8)!; print qq!\N{U+00E9}!" | +od -tx1 0000000 c3 a9 0000002 $ perl -e" binmode STDOUT,q!:encoding(UTF-8)!; print qq!\xE9!" |od -tx +1 0000000 c3 a9 0000002 $ perl -e" binmode STDOUT,q!:encoding(UTF-8)!; print qq!\x{00E9}!" |od + -tx1 0000000 c3 a9 0000002 $ perl -e" binmode STDOUT,q!:encoding(UTF-8)!; print qq!\x{C3A9}!" |od + -tx1 0000000 ec 8e a9 0000003
    You could have avoided my nonsense if you provided code in in Re^4: XML:: DOM and Accented Characters, thanks :)