| Nombre del símbolo | Leftwards Triple Arrow |
| Versión Unicode | 1.1 |
| Unicode | U+21DA |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \21DA |
| Código hexadecimal | 0x21DA |
| Código HTML | ⇚ |
| LaTeX | \text{LEFTWARDSTRIPLEARROW} |
| Símbolo | ⇚ |
| Codificación URL (porcentaje UTF-8) | %E2%87%9A |
| Nombre oral / lector de pantalla | Leftwards Triple Arrow |
| UTF-8 | E2 87 9A |
| UTF-16 | 21DA |
| UTF-32 | 000021DA |
1\documentclass{article}2\usepackage{pifont}3\text{LEFTWARDSTRIPLEARROW}4\end{document}Puedes escribir el símbolo leftwards triple arrow en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 8666 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "leftwards triple arrow", or use Unicode Hex Input with 21DA.
Ctrl + Shift + U, type 21da, 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.leftwards-triple-arrow::before { content: "\21DA"; }1<span>⇚</span>La representación del símbolo Leftwards Triple Arrow en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u21DA' or String.fromCodePoint(8666) |
| Python | '\N{LEFTWARDS TRIPLE ARROW}' or chr(8666) |
| Rust | '\u{21DA}' |
| C / C++ | UTF-8 source or wchar_t with U+21DA |
| Go | string(rune(0x21DA)) |
| Ruby | "\u{21DA}" |