| Nombre del símbolo | Heavy Greek Cross |
| Versión Unicode | 1.1 |
| Unicode | U+271A |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \271A |
| Código hexadecimal | 0x271A |
| Código HTML | ✚ |
| LaTeX | \text{HEAVYGREEKCROSS} |
| Símbolo | ✚ |
| Codificación URL (porcentaje UTF-8) | %E2%9C%9A |
| Nombre oral / lector de pantalla | Heavy Greek Cross |
| UTF-8 | E2 9C 9A |
| UTF-16 | 271A |
| UTF-32 | 0000271A |
1\documentclass{article}2\usepackage{pifont}3\text{HEAVYGREEKCROSS}4\end{document}Puedes escribir el símbolo heavy greek cross en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 10010 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "heavy greek cross", or use Unicode Hex Input with 271A.
Ctrl + Shift + U, type 271a, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the emoji keyboard.
Paste from this page or use a keyboard with religion symbol support.
1span.heavy-greek-cross::before { content: "\271A"; }1<span>✚</span>La representación del símbolo Heavy Greek Cross en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u271A' or String.fromCodePoint(10010) |
| Python | '\N{HEAVY GREEK CROSS}' or chr(10010) |
| Rust | '\u{271A}' |
| C / C++ | UTF-8 source or wchar_t with U+271A |
| Go | string(rune(0x271A)) |
| Ruby | "\u{271A}" |