For some reason i get a £76756687 weird character when i type a £ into a text field on my form?

link|improve this question

does the form show it, or does it end up somewhere else? I'm guessing UTF-8/ISO-8859-1 missmatch – roe Jan 14 '10 at 18:58
its sent into an email – tarnfeld Jan 14 '10 at 19:00
Is it a plain text or HTML email? – middaparka Jan 14 '10 at 19:06
its a HTML email – tarnfeld Jan 14 '10 at 19:06
You'll still need to set the encoding then - as long as the character set is the same on the email and form page all should be well. I'll update my answer. – middaparka Jan 14 '10 at 19:09
feedback

2 Answers

up vote 2 down vote accepted

As you suspect, it's a character encoding issue - is the page set to use a charset of UTF-8? (You can't go wrong with this encoding really.) Also, you'll probably want to entity encode the pound symbol on the way out (£)

As an example character set (for both the form page and HTML email) you could use:

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

That said, is there a good reason for the user to have to enter the currency symbol? Would it be a better idea to have it as either a static text item or a drop down to the left of the text field? (Feel free to ignore if I'm talking arse and you're using a freeform textarea or summat.)

link|improve this answer
+1, superior answer – Aiden Bell Jan 14 '10 at 19:14
doesnt seem to make a difference :| – tarnfeld Jan 14 '10 at 19:16
The information inside the document is ignored if the information is already stated on a higher level like HTTP. – Gumbo Jan 14 '10 at 19:19
Are you storing the data in a database (or any intermediate area) prior to creating the email? (If so, have you checked the connection and table character sets?) – middaparka Jan 14 '10 at 19:19
Do i entity encode aswell? – tarnfeld Jan 14 '10 at 19:20
show 2 more comments
feedback

You’re probably using UTF-8 as character encoding but don’t declare your output correctly. Because the £ character (U+00A3) is encoded in UTF-8 with 0xC2A3. And that byte sequence represents the two characters  and £ when interpreted with ISO 8859-1.

So you just need to specify your character encoding correctly. In PHP you can use the header function to set the proper value for Content-Type header field like:

header('Content-Type: text/html;charset=utf-8');

But make sure that you call this function before any output. Otherwise the HTTP header is already sent and you cannot modify it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.