| Symbol Name | Left Right Wave Arrow |
| Unicode Version | 1.1 |
| Unicode | U+21AD |
| Unicode block | |
| General category | Other Symbol (So) |
| CSS Code | \21AD |
| Hex Code | 0x21AD |
| HTML Code | ↭ |
| LaTeX | \text{LEFTRIGHTWAVEARROW} |
| Symbol | ↭ |
| URL encode (UTF-8 percent) | %E2%86%AD |
| Spoken / screen reader name | Left Right Wave Arrow |
| UTF-8 | E2 86 AD |
| UTF-16 | 21AD |
| UTF-32 | 000021AD |
1\documentclass{article}2\usepackage{pifont}3\text{LEFTRIGHTWAVEARROW}4\end{document}You can type the left right wave arrow symbol on most modern devices with the help of following methods:
Alt + 8621 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "left right wave arrow", or use Unicode Hex Input with 21AD.
Ctrl + Shift + U, type 21ad, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the symbol keyboard.
Paste from this page or use a keyboard with arrow symbol support.
1span.left-right-wave-arrow::before { content: "\21AD"; }1<span>↭</span>Left Right Wave Arrow symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u21AD' or String.fromCodePoint(8621) |
| Python | '\N{LEFT RIGHT WAVE ARROW}' or chr(8621) |
| Rust | '\u{21AD}' |
| C / C++ | UTF-8 source or wchar_t with U+21AD |
| Go | string(rune(0x21AD)) |
| Ruby | "\u{21AD}" |