Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Lernen Entities | Advanced Text Formatting Elements
Introduction to HTML

book
Entities

In HTML, entities are special characters used to represent certain symbols or characters that cannot be directly typed into the source code. A special code represents entities called an entity reference, which consists of an ampersand (&) followed by a name or number, and ends with a semicolon (;).

For example, the &lt; entity reference represents the less-than symbol (<) and is used to display the symbol in HTML without actually using the symbol in the source code.

index.html

index.html

copy
<p>The &lt; symbol is used to indicate the start of a HTML element.</p>

Here are some examples of how to use these entity references:

  • The &gt;: >

  • The &amp;: &

  • The &quot;: "

  • The &apos;: '

  • The &nbsp;: (space).

In addition to the common entity references, several other entity references are available in HTML that can be used to represent a wide range of characters and symbols. For example, you can use the &#8217; entity reference to represent the right single quotation mark (’) character or the &#x2605; entity reference to represent the star symbol (★).

index.html

index.html

copy
<p>
The &#8217; symbol is used to represent the right single quotation mark in
HTML.
</p>
<p>The &#x2605; symbol is used to represent the star symbol in HTML.</p>

War alles klar?

Wie können wir es verbessern?

Danke für Ihr Feedback!

Abschnitt 4. Kapitel 5

Fragen Sie AI

expand

Fragen Sie AI

ChatGPT

Fragen Sie alles oder probieren Sie eine der vorgeschlagenen Fragen, um unser Gespräch zu beginnen

some-alt