Arrows & Pointers

Downwards Arrow ()

Downwards pointing arrow for dropdown menus, negative trends, and download actions.

One-Click Copyable Code Formats

HTML Named Entity
↓
HTML Decimal Code
↓
HTML Hex Code
↓
CSS content (\XXXX)
\2193
JavaScript Unicode (\uXXXX)
\u2193
URL Percent Encoded
%E2%86%93

Real-World Implementation Snippets

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

Downwards Arrow (↓) HTML Entity FAQ

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

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