keecode logokeecode
Home / HTML Entities / Left arrow

Left arrow

Leftwards arrow

Arrows

HTML Codes

Named Entity

←

Numeric Code

←

Usage Examples

HTML Example (Named Entity)

<p>This is the Left arrow: &larr;</p>

Output: This is the Left arrow:

HTML Example (Numeric Code)

<p>This is the Left arrow: &#8592;</p>

Output: This is the Left arrow:

JavaScript Example

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