| Nombre del símbolo | South East Black Arrow |
| Versión Unicode | 4.0 |
| Unicode | U+2B0A |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \2B0A |
| Código hexadecimal | 0x2B0A |
| Código HTML | ⬊ |
| LaTeX | \text{SOUTHEASTBLACKARROW} |
| Símbolo | ⬊ |
| Codificación URL (porcentaje UTF-8) | %E2%AC%8A |
| Nombre oral / lector de pantalla | South East Black Arrow |
| UTF-8 | E2 AC 8A |
| UTF-16 | 2B0A |
| UTF-32 | 00002B0A |
1\documentclass{article}2\usepackage{pifont}3\text{SOUTHEASTBLACKARROW}4\end{document}Puedes escribir el símbolo south east black arrow en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 11018 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "south east black arrow", or use Unicode Hex Input with 2B0A.
Ctrl + Shift + U, type 2b0a, 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.south-east-black-arrow::before { content: "\2B0A"; }1<span>⬊</span>La representación del símbolo South East Black Arrow en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u2B0A' or String.fromCodePoint(11018) |
| Python | '\N{SOUTH EAST BLACK ARROW}' or chr(11018) |
| Rust | '\u{2B0A}' |
| C / C++ | UTF-8 source or wchar_t with U+2B0A |
| Go | string(rune(0x2B0A)) |
| Ruby | "\u{2B0A}" |