Reputation: 7805
For some reason the € is not showing even though this is my header:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
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
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