| Nome del simbolo | Square Ha |
| Versione Unicode | 1.1 |
| Unicode | U+33CA |
| Blocco Unicode | |
| Categoria generale | Other Symbol (So) |
| Codice CSS | \33CA |
| Codice esadecimale | 0x33CA |
| Codice HTML | ㏊ |
| LaTeX | \text{HA} |
| Simbolo | ㏊ |
| Codifica URL (percentuale UTF-8) | %E3%8F%8A |
| Nome parlato / screen reader | 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}Puoi digitare il simbolo square ha sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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 rappresentazione del simbolo Square Ha nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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" |