| Nom du symbole | Square Gal |
| Version Unicode | 4.0 |
| Unicode | U+33FF |
| Bloc Unicode | |
| Catégorie générale | Other Symbol (So) |
| Code CSS | \33FF |
| Code hexadécimal | 0x33FF |
| Code HTML | ㏿ |
| LaTeX | \text{GAL} |
| Symbole | ㏿ |
| Encodage URL (pourcent UTF-8) | %E3%8F%BF |
| Nom oral / lecteur d’écran | 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}Vous pouvez saisir le symbole square gal sur la plupart des appareils modernes avec les méthodes suivantes :
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 représentation du symbole Square Gal dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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" |