| Nombre del símbolo | Modifier Letter Voicing |
| Versión Unicode | 3.0 |
| Unicode | U+02EC |
| Bloque Unicode | |
| Categoría general | Modifier Letter (Lm) |
| Código CSS | \02EC |
| Código hexadecimal | 0x02EC |
| Código HTML | ˬ |
| LaTeX | \text{MODIFIERLETTERVOICING} |
| Símbolo | ˬ |
| Codificación URL (porcentaje UTF-8) | %CB%AC |
| Nombre oral / lector de pantalla | Modifier Letter Voicing |
| UTF-8 | CB AC |
| UTF-16 | 02EC |
| UTF-32 | 000002EC |
1\documentclass{article}2\usepackage{pifont}3\text{MODIFIERLETTERVOICING}4\end{document}Puedes escribir el símbolo modifier letter voicing en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 748 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "modifier letter voicing", or use Unicode Hex Input with 02EC.
Ctrl + Shift + U, type 02ec, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the Latin keyboard.
Paste from this page or use a keyboard with Latin letter support.
1span.modifier-letter-voicing::before { content: "\02EC"; font-family: "Charis SIL", "Doulos SIL", "DejaVu Serif", "Times New Roman", serif; }1<span>ˬ</span>La representación del símbolo Modifier Letter Voicing en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u02EC' or String.fromCodePoint(748) |
| Python | '\N{MODIFIER LETTER VOICING}' or chr(748) |
| Rust | '\u{02EC}' |
| C / C++ | UTF-8 source or wchar_t with U+02EC |
| Go | string(rune(0x02EC)) |
| Ruby | "\u{02EC}" |