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