vote up 4 vote down star

Hello!

The euro (€) is the official currency in 22 European states.

In HTML there are different possibilities to display the sign €:

  • €
  • €
  • €

Which one would you use in HTML? I think no representation is supported in all browsers. It's a pity that there is no standard way to display the sign.

Can you recommend one of the representations? What are the differences? Which ist supported best?

I hope you can help me. Thank you very much in advance!

flag

4 Answers

vote up 10 vote down check

Which one would you use in HTML?

None of them. Use an appropriate encoding (i.e.: UTF-8 or another Unicode transform) and use the charcter directly. Do not use HTML entities if at all avoidable, since they’ve got no advantage over use of a proper encoding.

Also, this is wrong:

It's a pity that there is no standard way to display the sign.

There is, and it’s the way I’ve described. Literally every browser, down to and including MSIE 5 will display Unicode characters correctly if the chosen fond supports the glyph.

The only valid reason to not use Unicode characters and instead fall back to entities might be projects that use legacy software which doesn’t support Unicode well. But that should never happen, right?

link|flag
Thanks! So since I use UTF-8, I should use €, right? Is this really better than the entities? Better supported? – marco92w Sep 6 at 15:07
4  
+1. This is 2009, we should all be using UTF-8 by now. You typed the € directly in your SO question, you should type it directly in your web page! – bobince Sep 6 at 15:07
marco: Look at my update. Yes, it is better supported, even legacy browsers display it without troubles (heck, even Lynx does, properly set up). Fonts that contain the € symbol have been around for ages and all standard web fonts (i.e. the only ones that should be used since they’re the only ones with sufficient widespread support) do contain it. – Konrad Rudolph Sep 6 at 15:09
1  
You have saved your file as Windows-CP1252 encoding (Western European), and are serving it as ISO-8859-1 encoding, which similar to CP1252 but not the same. That's why the euro ends up as a control character (U+0080). Most likely you are serving your page without any charset data at all, so the browser is guessing which you mean, which may be confusing you. Add a <meta http-equiv="Content-Type" content="text/html;charset=..."/> element to the <head> to specify which charset you mean. – bobince Sep 7 at 13:00
1  
You would be best off saving the file as UTF-8 and serving it as UTF-8, but Proton is an old-fashioned editor that does not support Unicode at all. I wouldn't recommend it. Typing 'ä' to get 'ä' is just silly. – bobince Sep 7 at 13:02
show 6 more comments
vote up 5 vote down

According to Google Doctype &euro; is supported in all browsers. But maybe not all fonts.

edit I also agree with Konrad Rudolph, use the character directly if you can.

link|flag
It seems that it doesn't work in Internet Explorer 8 if you use the font Courier New. – marco92w Sep 6 at 15:55
1  
So much for "New". – Manni Sep 6 at 16:03
vote up -2 vote down

I have read about this problem before. I would recomend you this web about the topis. Has a lot of info.

link|flag
1  
I'd say the content your link points to is outdated. – Josef Sep 6 at 14:59
Yes, I think so, too. It's 4 years old so it doesn't say anything to the current state of browsers. – marco92w Sep 6 at 15:05
vote up 0 vote down

You should really just test it and specify those browsers that support it as minimum requirements. This eases your workload considerably since it makes the user responsible :-) Or, alternatively, use the word "euro" or the "EUR" curruncy designator (like USD, AUD, JPY and so on).

link|flag
Thank you. The "EUR" would probably be the best alternative. – marco92w Sep 6 at 15:14

Your Answer

Get an OpenID
or

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