Reputation: 38468
It's annoying to see even the most professional sites do it wrong. Posted text turns into something that's unreadable. I don't have much information about encodings. I just want to know about the problem that's making such a basic thing so hard.
Is there an absolute solution to this? It may have its limits but StackOverflow seems to make it work.
Upvotes: 7
Views: 2432
Reputation: 13196
I suspect one needs to make sure that the whole stack handles the encoding with care:
The first few are normally handled by the browser and web framework of choice, but if you screw up the DB encoding or use a font with limited character set there will be no one to save you.
Upvotes: 8