| Nome del simbolo | Squared Saltire |
| Versione Unicode | 5.2 |
| Unicode | U+26DD |
| Blocco Unicode | |
| Categoria generale | Other Symbol (So) |
| Codice CSS | \26DD |
| Codice esadecimale | 0x26DD |
| Codice HTML | ⛝ |
| LaTeX | \text{SQUAREDSALTIRE} |
| Simbolo | ⛝ |
| Codifica URL (percentuale UTF-8) | %E2%9B%9D |
| Nome parlato / screen reader | 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}Puoi digitare il simbolo squared saltire sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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 rappresentazione del simbolo Squared Saltire nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |