keecode logokeecode
Home / HTML Entities / Ampersand
&

Ampersand

Ampersand

Reserved

HTML Codes

Named Entity

&

Numeric Code

&

Usage Examples

HTML Example (Named Entity)

<p>This is the Ampersand: &amp;</p>

Output: This is the Ampersand: &

HTML Example (Numeric Code)

<p>This is the Ampersand: &#38;</p>

Output: This is the Ampersand: &

JavaScript Example

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