| Nombre del símbolo | Square Gpa |
| Versión Unicode | 1.1 |
| Unicode | U+33AC |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \33AC |
| Código hexadecimal | 0x33AC |
| Código HTML | ㎬ |
| LaTeX | \text{GPA} |
| Símbolo | ㎬ |
| Codificación URL (porcentaje UTF-8) | %E3%8E%AC |
| Nombre oral / lector de pantalla | Square Gpa |
| UTF-8 | E3 8E AC |
| UTF-16 | 33AC |
| UTF-32 | 000033AC |
1\documentclass{article}2\usepackage{pifont}3\text{GPA}4\end{document}Puedes escribir el símbolo square gpa en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 13228 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "square gpa", or use Unicode Hex Input with 33AC.
Ctrl + Shift + U, type 33ac, 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-gpa::before { content: "\33AC"; }1<span>㎬</span>La representación del símbolo Square Gpa en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u33AC' or String.fromCodePoint(0x33AC) |
| Python | '\N{SQUARE GPA}' or chr(13228) |
| Rust | '\u{33AC}' |
| C / C++ | UTF-8 source or wchar_t with U+33AC |
| Go | string(rune(0x33AC)) |
| Ruby | "\u33AC" |