| Nombre del símbolo | Plus Sign In Triangle |
| Versión Unicode | 3.2 |
| Unicode | U+2A39 |
| Bloque Unicode | |
| Categoría general | Math Symbol (Sm) |
| Código CSS | \2A39 |
| Código hexadecimal | 0x2A39 |
| Código HTML | ⨹ |
| LaTeX | \text{PLUSSIGNINTRIANGLE} |
| Símbolo | ⨹ |
| Codificación URL (porcentaje UTF-8) | %E2%A8%B9 |
| Nombre oral / lector de pantalla | Plus Sign In Triangle |
| UTF-8 | E2 A8 B9 |
| UTF-16 | 2A39 |
| UTF-32 | 00002A39 |
1\documentclass{article}2\usepackage{pifont}3\text{PLUSSIGNINTRIANGLE}4\end{document}Puedes escribir el símbolo plus sign in triangle en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 10809 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "plus sign in triangle", or use Unicode Hex Input with 2A39.
Ctrl + Shift + U, type 2a39, 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 geometric symbol support.
1span.plus-sign-in-triangle::before { content: "\2A39"; }1<span>⨹</span>La representación del símbolo Plus Sign In Triangle en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u2A39' or String.fromCodePoint(10809) |
| Python | '\N{PLUS SIGN IN TRIANGLE}' or chr(10809) |
| Rust | '\u{2A39}' |
| C / C++ | UTF-8 source or wchar_t with U+2A39 |
| Go | string(rune(0x2A39)) |
| Ruby | "\u{2A39}" |