如何使用 HTML 保留字符?
超文本标记语言(HTML),网页的最基本构建块,它定义了它的结构。浏览器使用这种标记语言来处理文本、图像和其他内容等数据,以便以所需的格式显示。超文本是指连接网页的链接,标记定义标签内的文本文档。
HTML 保留字符: 在 HTML 中,有一些特殊字符保留供使用。这意味着浏览器会将它们解析为 HTML 代码。这些也可能是我们设备的基本键盘中不存在的字符。例如,<(小于)、>(大于)、&(与号)、©(版权)等。
如何使用 HTML 保留字符?
我们可以使用 HTML 保留字符的方式是使用 HTML 实体 这样保留字符就不会被解释为 HTML 代码。这些实体是以与号 (&) 开头并以分号 (;) 结尾的字符串。这些保留字符可以被实体名称和实体编号使用。
句法:
entity_number; or &entity_name;
注意:实体名称区分大小写。
一些实体名称及其实体编号如下。 Reserved Character Character Name Entity Number Entity Name < Less than < < & Ampersand & & © Copyright © © ∈ Element of ∈ ∈ ∋ Contains as member ∋ ∋ ↓ Downwards arrow ↓ ↓
示例 1:此示例显示了使用实体名称使用保留字符(例如 <(小于)、>(大于)和 &(与号))的方式,因此它们不会被解释为 HTML 代码。
HTML
HTML reserved character
GeeksforGeeks
< (Less than) entity name is " < "
> (Greater than) entity name is " > "
& (Ampersand) entity name is " & "
HTML
HTML reserved character
GeeksforGeeks
← (leftwards arrow) entity number is " ← "
→ (rightwards arrow) entity number is " → "
↑ (upwards arrow) entity number is " ↑ "
↓ (downwards arrow) entity number is " ↓ "
输出 :
示例 2:此示例显示了使用实体编号使用保留字符的方式,例如←(向左箭头)、→(向右)、↑(向上)和 ↓(向下箭头),因此它们不会被解释为 HTML 代码。
HTML
HTML reserved character
GeeksforGeeks
← (leftwards arrow) entity number is " ← "
→ (rightwards arrow) entity number is " → "
↑ (upwards arrow) entity number is " ↑ "
↓ (downwards arrow) entity number is " ↓ "
输出: