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