| Nombre del símbolo | Square Gal |
| Versión Unicode | 4.0 |
| Unicode | U+33FF |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \33FF |
| Código hexadecimal | 0x33FF |
| Código HTML | ㏿ |
| LaTeX | \text{GAL} |
| Símbolo | ㏿ |
| Codificación URL (porcentaje UTF-8) | %E3%8F%BF |
| Nombre oral / lector de pantalla | 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}Puedes escribir el símbolo square gal en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Square Gal en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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" |