Arrows & Pointers

Upwards Arrow ()

Upwards pointing arrow for scroll-to-top buttons, positive growth trends, and upload actions.

One-Click Copyable Code Formats

HTML Named Entity
↑
HTML Decimal Code
↑
HTML Hex Code
↑
CSS content (\XXXX)
\2191
JavaScript Unicode (\uXXXX)
\u2191
URL Percent Encoded
%E2%86%91

Real-World Implementation Snippets

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

Upwards Arrow (↑) HTML Entity FAQ

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

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