Arrows & Pointers

Left Right Arrows (Swap) ()

Paired horizontal reciprocal swap arrows used for two-way currency conversion, unit switching, and code format swapping.

One-Click Copyable Code Formats

HTML Named Entity
⇄
HTML Decimal Code
⇄
HTML Hex Code
⇄
CSS content (\XXXX)
\21C4
JavaScript Unicode (\uXXXX)
\u21C4
URL Percent Encoded
%E2%87%84

Real-World Implementation Snippets

HTML5 Document
<p>Example: &#8644;</p>
CSS ::before / ::after
.badge::before { content: '\21C4 '; }
React JSX / TypeScript
<span>{"\u21C4"}</span>
Frequently Asked Questions

Left Right Arrows (Swap) (⇄) HTML Entity FAQ

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

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