I am writing a web application where I have to display some german special characters like ä,ü,ö
.
I am using utf_general_ci
encode in mysql to store the data. So, the special characters like Ü
is stored as ü
, hence when I fetch the data that contains a character like Ü
is displayed as ü
. which encoding should be used in html to display the german characters properly in html page?
I have used UTF-8 encoding as well as iso-8859-1 both does not seem to work.
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta charset="UTF-8">
any help is appreciated thanks in advance