Foreword: When using HTML CSS for web page layout, various garbled problems often occur when browsing web pages. So if we need to solve this problem, we need to first understand the cause of the problem. This article will analyze the various causes and solutions for everyone. Everyone is welcome to comment below, thank you!
Recommended video tutorial:HTML tutorial
一、Cause of garbled characters
1,If the source code of the web page is written bygbk
, and the text in the content isutf-8
, then, open it at this time HTML garbled characters will appear in the browser. On the contrary, garbled characters will also appear.
2, the HTML webpage encoding isgbk
, but the program calls out the content encoded inutf-8
from the program library. It will cause garbled encoding.
3.The browser cannot automatically detect the encoding of the web page, causing the web page to be garbled.
2. Methods to solve garbled characters
The first: HTML web page source code encoding and Chinese characters The input encoding is different.
Solution: Use professional editing software to write HTML web pages. For exampleDW.
Try not to use Notepad directly for writing.
Second: The web page setting encoding isgbk
, but the database storage data encoding format isUTF-8
. At this time, the program queries The database data display data can be transcoded.
For example:
mysql_query("SET NAMES 'UTF-8'") //将查询数据转码为UTF-8
Then don’t forget the following content when making a web page:
Third Category: The browser causes garbled characters
This reason is generally caused by the web page not setting themeta charset
encoding. As a result, the browser cannot recognize the default encoding type of your web page.
Solution:
1. If the web page is garbled when browsing in the browser, find the menu to convert the encoding in the browser.
2. If you develop your own web page, you must add themeta charset
encoding tag to the web page.
If the conversion is done without editing themeta
charset
encoding tag in Notepad, which will also cause garbled characters, it is because directly adding or adding in Notepad After the encoding format is modified, the corresponding HTML hypertext document content does not change with the addition or modification of the encoding format. At this time, true transcoding is required, so it is best to use professional development software to write the code.
More HTML practical tutorials:HTML practical tutorial
The above is the detailed content of Reasons and solutions for garbled html web pages. For more information, please follow other related articles on the PHP Chinese website!