Summary of commonly used escape characters in HTML

Summary of commonly used escape characters in HTML

The commonly used escape characters in HTML are summarized as follows:

  Non-breaking space

  Half-square space

  Full large space

&lt; less than<

&gt; Greater than>

&amp; Symbol

&quot;Double quotes"

&copy; Copyright symbol©

&reg; Registered Trademark®

&trade; Trademark (USA) TM

&times; Multiplication sign ×

&divide; Division sign ÷

Note: 1. There should be no spaces between escape characters.

2. The escape character must end with ";".

3. A single "&" is not considered the start of an escape character.

4. Escape characters are case sensitive.

Summarize

The above is a summary of the commonly used escape characters in HTML introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time!

<<:  Detailed explanation of CSS style sheets and format layout

>>:  Introduction to scheduled tasks in Linux system

Recommend

How to implement nested if method in nginx

Nginx does not support nested if statements, nor ...

Example of how to embed H5 in WeChat applet webView

Preface WeChat Mini Programs provide new open cap...

Practical record of MySQL 5.6 master-slave error reporting

1. Problem symptoms Version: MySQL 5.6, using the...

Detailed explanation of data types and schema optimization in MySQL

I'm currently learning about MySQL optimizati...

Detailed explanation of data sharing between Vue components

Table of contents 1. In project development, the ...

The phenomenon of margin-top collapse and the specific solution

What is margin-top collapse Margin-top collapse i...

Detailed explanation of several methods of deduplication in Javascript array

Table of contents Array deduplication 1 Double-la...

How to run a project with docker

1. Enter the directory where your project war is ...

MySQL 8.0.24 installation and configuration method graphic tutorial

This article shares the installation tutorial of ...

How to disable web page styles using Firefox's web developer

Prerequisite: The web developer plugin has been in...

HTML user registration page settings source code

Design the web page shown above: <!DOCTYPE htm...

Detailed explanation of HTML table inline format

Inline format <colgroup>...</colgroup>...

A brief discussion of 3 new features worth noting in TypeScript 3.7

Table of contents Preface Optional Chaining Nulli...

A brief discussion on the pitfalls of react useEffect closure

Problem code Look at a closure problem code cause...