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