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