#Character encoding is a method of converting bytes into characters. In order to correctly validate or display an HTML document, a program must choose the appropriate character encoding.
Use the element to set the charset attribute and specify the character encoding for the HTML document.
<!DOCTYPE html> <html> <head> <meta charset = "UTF-8"> </head> <body> <p>Click following link</p> <a href = "https://www.qries.com" target = "_self">Welcome to Qries</a> </body> </html>
The above is the detailed content of How to include character encoding in HTML?. For more information, please follow other related articles on the PHP Chinese website!