keecode logokeecode
Home / HTML Entities / Up arrow

Up arrow

Upwards arrow

Arrows

HTML Codes

Named Entity

↑

Numeric Code

↑

Usage Examples

HTML Example (Named Entity)

<p>This is the Up arrow: &uarr;</p>

Output: This is the Up arrow:

HTML Example (Numeric Code)

<p>This is the Up arrow: &#8593;</p>

Output: This is the Up arrow:

JavaScript Example

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