Arrows & Pointers

Leftwards Arrow ()

Standard left-pointing arrow symbol for navigation back buttons and undo actions.

One-Click Copyable Code Formats

HTML Named Entity
←
HTML Decimal Code
←
HTML Hex Code
←
CSS content (\XXXX)
\2190
JavaScript Unicode (\uXXXX)
\u2190
URL Percent Encoded
%E2%86%90

Real-World Implementation Snippets

HTML5 Document
<p>Example: &larr;</p>
CSS ::before / ::after
.badge::before { content: '\2190 '; }
React JSX / TypeScript
<span>{"\u2190"}</span>
Frequently Asked Questions

Leftwards Arrow (←) HTML Entity FAQ

Common questions regarding HTML escape codes, CSS pseudo-elements, and browser character encoding.

The standard HTML named entity is "&larr;". If using numeric codes, you can use the decimal code "&#8592;" or hex code "&#x2190;".