| Nome del simbolo | Left Right Wave Arrow |
| Versione Unicode | 1.1 |
| Unicode | U+21AD |
| Blocco Unicode | |
| Categoria generale | Other Symbol (So) |
| Codice CSS | \21AD |
| Codice esadecimale | 0x21AD |
| Codice HTML | ↭ |
| LaTeX | \text{LEFTRIGHTWAVEARROW} |
| Simbolo | ↭ |
| Codifica URL (percentuale UTF-8) | %E2%86%AD |
| Nome parlato / screen reader | 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}Puoi digitare il simbolo left right wave arrow sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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 rappresentazione del simbolo Left Right Wave Arrow nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |