'
Apostrophe
Single quotation mark (apostrophe)
Reserved
HTML Codes
Named Entity
'
Numeric Code
'
Usage Examples
HTML Example (Named Entity)
<p>This is the Apostrophe: '</p>
Output: This is the Apostrophe: '
HTML Example (Numeric Code)
<p>This is the Apostrophe: '</p>
Output: This is the Apostrophe: '
JavaScript Example
const char = "'"; console.log(char); // '
When to Use HTML Entities
These characters are reserved in HTML and must be escaped to display correctly. Always use entity codes when you want to display these characters as text.