I'm having some problems with a web application of mine.
To make things clearer here is an html input form which shows it. The form inputs two strings with GET and POST and, BTW, uses HTML::Mason.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>Test utf</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" +> </head> <body> <form name="formutfget" method="GET"> Enter text (get):<br> <input type="text" name="textget" size="20" maxlength="30"> </form> <form name="formutfpost" method="POST"> Enter text (post):<br> <input type="text" name="textpost" size="20" maxlength="30"> </form> Value of GET: <% $textget %><br> Hex of GET: <% $hexget %><br> Value of POST: <% $textpost %><br> Hex of POST: <% $hexpost %><br> </body> </html> <%args> $textget => '' $textpost => '' $hexget => '' $hexpost => '' </%args> <%init> $hexget = unpack('H*', $textget); $hexpost = unpack('H*', $textpost); </%init>
The strange thing is that running this form under these environments

Debian Woody - perl 5.6.1 - Mozilla 1.4.3/Firefox 1.0
Debian Sid - perl 5.8.4 - Mozilla 1.4.3/Firefox 1.0

using as input the string "Δωδεκανήσων", I get

Value of GET: Δωδεκανήσων
Hex of GET:
26233931363b26233936393b26233934383b26233934393b26233935343b2623393435 +3b26233935373b26233934323b26233936333b26233936393b26233935373b
Value of POST: Δωδεκανήσων
Hex of POST:
26233931363b26233936393b26233934383b26233934393b26233935343b2623393435 +3b26233935373b26233934323b26233936333b26233936393b26233935373b

while in OpenBSD 3.3 - perl 5.8.0 - Mozilla 1.4.3/Firefox 1.0 with the same input string I get

Value of GET: Δωδεκανήσων
Hex of GET: ce94cf89ceb4ceb5cebaceb1cebdceaecf83cf89cebd
Value of POST: Δωδεκανήσων
Hex of POST: ce94cf89ceb4ceb5cebaceb1cebdceaecf83cf89cebd

So, it seems that in the former I get escaped unicode characters and in the latter UTF-8 ones.
I thought that it could be a 5.6 vs 5.8 difference but as you can see even under Debian Sid I got the same unicode chars.
Could it be an OpenBSD peculiarity? I've Googled it but with no luck, maybe someone can shed some light on it...

Thanks!

2005-01-09 Janitored by Arunbear - added code tags around long hex strings, to prevent distortion of site layout


In reply to Differences in UTF-8 html form by Realbot

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.