keecode logokeecode
Home / HTML Entities / En dash

En dash

En dash

Punctuation

HTML Codes

Named Entity

–

Numeric Code

–

Usage Examples

HTML Example (Named Entity)

<p>This is the En dash: &ndash;</p>

Output: This is the En dash:

HTML Example (Numeric Code)

<p>This is the En dash: &#8211;</p>

Output: This is the En dash:

JavaScript Example

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