| Nombre del símbolo | Left Right Wave Arrow |
| Versión Unicode | 1.1 |
| Unicode | U+21AD |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \21AD |
| Código hexadecimal | 0x21AD |
| Código HTML | ↭ |
| LaTeX | \text{LEFTRIGHTWAVEARROW} |
| Símbolo | ↭ |
| Codificación URL (porcentaje UTF-8) | %E2%86%AD |
| Nombre oral / lector de pantalla | 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}Puedes escribir el símbolo left right wave arrow en la mayoría de dispositivos modernos con los siguientes métodos:
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>La representación del símbolo Left Right Wave Arrow en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |