| Nombre del símbolo | Hangul Syllable Myalt |
| Versión Unicode | 2.0 |
| Unicode | U+BA0D |
| Bloque Unicode | |
| Categoría general | Other Letter (Lo) |
| Código CSS | \BA0D |
| Código hexadecimal | 0xBA0D |
| Código HTML | 먍 |
| LaTeX | \hangul{BA0D} |
| Símbolo | 먍 |
| Codificación URL (porcentaje UTF-8) | %EB%A8%8D |
| Nombre oral / lector de pantalla | Hangul Syllable Myalt |
| UTF-8 | EB A8 8D |
| UTF-16 | BA0D |
| UTF-32 | 0000BA0D |
1\documentclass{article}2\usepackage{pifont}3\hangul{BA0D}4\end{document}Puedes escribir el símbolo hangul syllable myalt en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 47629 on Windows (numeric keypad with Num Lock), or insert via Character Map / Korean IME.
Edit → Emoji & Symbols, search "hangul syllable myalt", or use Unicode Hex Input with BA0D.
Ctrl + Shift + U, type ba0d, then Enter (layout-dependent), or use an IBus Hangul table.
Paste from this page, use text replacement, or pick from the Korean keyboard.
Paste from this page or use a keyboard with Hangul support.
1span.korean-syllable-myalt::before { content: "\BA0D"; font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif; }1<span>먍</span>La representación del símbolo Hangul Syllable Myalt en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\uBA0D' or String.fromCodePoint(47629) |
| Python | '\N{HANGUL SYLLABLE MYALT}' or chr(47629) |
| Rust | '\u{BA0D}' |
| C / C++ | UTF-8 source or wchar_t with U+BA0D |
| Go | string(rune(0xBA0D)) |
| Ruby | "\u{BA0D}" |