Leftwards Arrow

Shortcodes

Copy useful codes for leftwards arrow symbol ← to use in websites, apps, blogs, and docs.

Unicode
U+2190
Alt Code
27
HTML Code
←
HTML Entity
←
HEX Code
←
CSS Code
\2190
JS/JSON
\u2190
Unix/C/PHP/JAVA
0x2190
URL-encode
%E2%86%90

Customize Leftwards Arrow

Customize ←, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Leftwards Arrow Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>←</span>
HTML Code:
<span>&#8592;</span>
HTML Entity:
<span>&larr;</span>
HEX Code:
<span>&#x2190;</span>

Add with CSS

.leftwards-arrow::before {
  content: '\\2190';
}

Set it in JavaScript

document.querySelector('.leftwards-arrow').textContent = '←';
copied