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