HTML symbols represent characters like ©, ®, or arrows that aren’t directly typed from the keyboard. These are displayed using special codes called entities.
For example, the copyright symbol is written as: © and appears as: ©
Example usage in a footer:
<footer>
<p>© 2025 MyWebsite. All rights reserved.</p>
</footer>HTML entities are special codes that begin with & and end with ;. They’re used to represent characters that have special meanings in HTML, or characters that may not render properly otherwise.
< = <
> = >
& = &
" = "
' = 'Here are some commonly used character entities:
< → <> → >& → &" → "' → 'HTML provides support for currency, mathematical, and Greek symbols using entity codes:
€ → €¥ → ¥£ → £÷ → ÷α → αThe most common invisible entity is which adds a non-breaking space that won’t allow line breaks:
Hello WorldThis will render as: Hello World
< and &Without using entities, a browser might misinterpret characters as HTML code, causing rendering issues.
Write a paragraph using these entities: ©, ™, <, >, and €.
<p>
© 2025 Example Corp. All rights reserved. ™<br>
Use <html> and <body> tags to structure your page.<br>
Pricing starts at €99.
</p>Ask the AI if you need help understanding or want to dive deeper in any topic