Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to display extended fonts correctly in Firefox? 1

Status
Not open for further replies.

lcs01

Programmer
Aug 2, 2006
182
US
Hi, Experts,

I have a simple html file like this:

Code:
<html>
<body>
Search string is: "faßt".
</body>
</html>

When I open this file through Firefox File->Open File, it looks like this:

Search string is: "faßt".

Could someone kindly tell me how to handle this? Many thanks!
 
Hi

lcs01 said:
Code:
Search string is: "faßt".
Search string is: "faßt".
You have to tell the browsers the character set to use :
Code:
<meta http-equiv="content-type" content="text/html; charset=utf-8">
And if needed, to tell th web server to not send different information in the HTTP header.

Feherke.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top