pufAmuf
pufAmuf

Reputation: 7805

€ symbol not showing even when UTF8

For some reason the € is not showing even though this is my header:

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

Here is the address

And what's weird is that the table is loaded via ajax from this address: where there's no problem with the characters

Does anybody know why? Thanks :)

Upvotes: 0

Views: 429

Answers (1)

deceze
deceze

Reputation: 522081

Looks like you're saving your text in Latin-1 encoding on the backend. Switching to Latin-1 for your AJAX site displays it correctly. Save your source in UTF-8.

Upvotes: 2

Related Questions