keecode logokeecode
Home / HTML Entities / Right arrow

Right arrow

Rightwards arrow

Arrows

HTML Codes

Named Entity

→

Numeric Code

→

Usage Examples

HTML Example (Named Entity)

<p>This is the Right arrow: &rarr;</p>

Output: This is the Right arrow:

HTML Example (Numeric Code)

<p>This is the Right arrow: &#8594;</p>

Output: This is the Right arrow:

JavaScript Example

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