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