keecode logokeecode
Home / HTML Entities / Apostrophe
'

Apostrophe

Single quotation mark (apostrophe)

Reserved

HTML Codes

Named Entity

'

Numeric Code

'

Usage Examples

HTML Example (Named Entity)

<p>This is the Apostrophe: &apos;</p>

Output: This is the Apostrophe: '

HTML Example (Numeric Code)

<p>This is the Apostrophe: &#39;</p>

Output: This is the Apostrophe: '

JavaScript Example

const char = "&apos;";
console.log(char); // '