How To Display Special Characters Correctly In The Website - Html
if you can check in my code here, you can see that the 'umlauts' or the special letters in german are not displaying properly. How can i display them properly do i have to put some
Solution 1:
Your pages header says that it's in UTF-8, but the contents has:
0001e40:6e64204cf673756e6765 6e20696e2053 ndL.sungeninS0002080:7375 6e67656e2c206469 6520 6e696368 sungen,dienich
f6 for one of the non-ASCII characters - the content is encoded in Latin1 (ISO-8859-1).
Either make the page report that it is in Latin1, of re-encode the content into UTF-8.
Solution 2:
use this for character entity reference:
Solution 3:
Try this Character Reference:
http://www.utexas.edu/learn/html/spchar.html
Post a Comment for "How To Display Special Characters Correctly In The Website - Html"