| Nome del simbolo | Square Mu W |
| Versione Unicode | 1.1 |
| Unicode | U+33BC |
| Blocco Unicode | |
| Categoria generale | Other Symbol (So) |
| Codice CSS | \33BC |
| Codice esadecimale | 0x33BC |
| Codice HTML | ㎼ |
| LaTeX | \text{MUW} |
| Simbolo | ㎼ |
| Codifica URL (percentuale UTF-8) | %E3%8E%BC |
| Nome parlato / screen reader | Square Mu W |
| UTF-8 | E3 8E BC |
| UTF-16 | 33BC |
| UTF-32 | 000033BC |
1\documentclass{article}2\usepackage{pifont}3\text{MUW}4\end{document}Puoi digitare il simbolo square mu w sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 13244 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "square mu w", or use Unicode Hex Input with 33BC.
Ctrl + Shift + U, type 33bc, 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-mu-w::before { content: "\33BC"; }1<span>㎼</span>La rappresentazione del simbolo Square Mu W nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u33BC' or String.fromCodePoint(0x33BC) |
| Python | '\N{SQUARE MU W}' or chr(13244) |
| Rust | '\u{33BC}' |
| C / C++ | UTF-8 source or wchar_t with U+33BC |
| Go | string(rune(0x33BC)) |
| Ruby | "\u33BC" |