Solution to the garbled problem of web pages when the encoding is set to utf-8

Solution to the garbled problem of web pages when the encoding is set to utf-8
Recently, when I was writing web pages with PHP, I set the encoding to UTF-8. But the disgusting thing was that garbled characters appeared many times, which gave me a headache. I finally took 10 minutes to find out the root cause of the garbled characters from the Internet. From now on, I am not afraid of garbled characters on web pages anymore, haha! !

UTF-8 is an international encoding, including Chinese characters. It is recommended to set it to UTF-8 to save trouble;

The steps are as follows:

First: define the web page display code. If the web page encoding is not defined, IE will automatically identify the web page encoding when we browse the web page, which may cause garbled Chinese characters to be displayed. Therefore, when we make web pages, we always use “<meta http-equiv=”Content-Type” content=”text/html; charset=utf-8″>” to define the web page encoding.

Second: Web page storage encoding. People often overlook this issue. When we edit a web page, different tools will use a default encoding format. We should edit and save it in utf-8 format, and use <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> to make the web page display encoding utf8. If it is inconsistent, it will cause garbled characters.

ps: When PHP programming uses a database, the database encoding must also be consistent with the encoding displayed on the web page, so that the database content can be displayed on the web page without garbled characters;

Thanks!

<<:  Introduction to the process of installing MySQL 8.0 in Linux environment

>>:  A brief discussion on the placement of script in HTML

Recommend

HTML framework_Powernode Java Academy

1. Framework A browser document window can only d...

Detailed explanation of Strict mode in JavaScript

Table of contents Introduction Using Strict mode ...

How to shut down/restart/start nginx

closure service nginx stop systemctl stop nginx s...

Building the User Experience

<br />Maybe you've just come into a comp...

How to deploy nginx with Docker and modify the configuration file

Deploy nginx with docker, it's so simple Just...

Nginx Linux installation and deployment detailed tutorial

1. Introduction to Nginx Nginx is a web server th...

CSS3 animation to achieve the effect of streamer button

In the process of learning CSS3, I found that man...

MySQL database JDBC programming (Java connects to MySQL)

Table of contents 1. Basic conditions for databas...

Tutorial for installing MySQL 8.0.18 under Windows (Community Edition)

This article briefly introduces how to install My...

Summary of uncommon operators and operators in js

Summary of common operators and operators in java...

Linux system to view CPU, machine model, memory and other information

During system maintenance, you may need to check ...

Two ways to make IE6 display PNG-24 format images normally

Method 1: Please add the following code after <...