| Nome del simbolo | Square Gal |
| Versione Unicode | 4.0 |
| Unicode | U+33FF |
| Blocco Unicode | |
| Categoria generale | Other Symbol (So) |
| Codice CSS | \33FF |
| Codice esadecimale | 0x33FF |
| Codice HTML | ㏿ |
| LaTeX | \text{GAL} |
| Simbolo | ㏿ |
| Codifica URL (percentuale UTF-8) | %E3%8F%BF |
| Nome parlato / screen reader | Square Gal |
| UTF-8 | E3 8F BF |
| UTF-16 | 33FF |
| UTF-32 | 000033FF |
1\documentclass{article}2\usepackage{pifont}3\text{GAL}4\end{document}Puoi digitare il simbolo square gal sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 13311 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "square gal", or use Unicode Hex Input with 33FF.
Ctrl + Shift + U, type 33ff, 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 unit symbol support.
1span.square-gal::before { content: "\33FF"; }1<span>㏿</span>La rappresentazione del simbolo Square Gal nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u33FF' or String.fromCodePoint(0x33FF) |
| Python | '\N{SQUARE GAL}' or chr(13311) |
| Rust | '\u{33FF}' |
| C / C++ | UTF-8 source or wchar_t with U+33FF |
| Go | string(rune(0x33FF)) |
| Ruby | "\u33FF" |