| Nombre del símbolo | Maltese Cross |
| Versión Unicode | 1.1 |
| Unicode | U+2720 |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \2720 |
| Código hexadecimal | 0x2720 |
| Código HTML | ✠ |
| LaTeX | \text{MALTESECROSS} |
| Símbolo | ✠ |
| Codificación URL (porcentaje UTF-8) | %E2%9C%A0 |
| Nombre oral / lector de pantalla | Maltese Cross |
| UTF-8 | E2 9C A0 |
| UTF-16 | 2720 |
| UTF-32 | 00002720 |
1\documentclass{article}2\usepackage{pifont}3\text{MALTESECROSS}4\end{document}Puedes escribir el símbolo maltese cross en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 10016 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "maltese cross", or use Unicode Hex Input with 2720.
Ctrl + Shift + U, type 2720, 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.maltese-cross::before { content: "\2720"; }1<span>✠</span>La representación del símbolo Maltese Cross en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u2720' or String.fromCodePoint(10016) |
| Python | '\N{MALTESE CROSS}' or chr(10016) |
| Rust | '\u{2720}' |
| C / C++ | UTF-8 source or wchar_t with U+2720 |
| Go | string(rune(0x2720)) |
| Ruby | "\u{2720}" |