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