| Nombre del símbolo | Hangul Jungseong Yo |
| Versión Unicode | 1.1 |
| Unicode | U+116D |
| Bloque Unicode | |
| Categoría general | Other Letter (Lo) |
| Código CSS | \116D |
| Código hexadecimal | 0x116D |
| Código HTML | ᅭ |
| LaTeX | \hangul{116D} |
| Símbolo | ᅭ |
| Codificación URL (porcentaje UTF-8) | %E1%85%AD |
| Nombre oral / lector de pantalla | Hangul Jungseong Yo |
| UTF-8 | E1 85 AD |
| UTF-16 | 116D |
| UTF-32 | 0000116D |
1\documentclass{article}2\usepackage{pifont}3\hangul{116D}4\end{document}Puedes escribir el símbolo hangul jungseong yo en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 4461 on Windows (numeric keypad with Num Lock), or insert via Character Map / Korean IME.
Edit → Emoji & Symbols, search "hangul jungseong yo", or use Unicode Hex Input with 116D.
Ctrl + Shift + U, type 116d, 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.hangul-jungseong-yo::before { content: "\116D"; font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif; }1<span>ᅭ</span>La representación del símbolo Hangul Jungseong Yo en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u116D' or String.fromCodePoint(4461) |
| Python | '\N{HANGUL JUNGSEONG YO}' or chr(4461) |
| Rust | '\u{116D}' |
| C / C++ | UTF-8 source or wchar_t with U+116D |
| Go | string(rune(0x116D)) |
| Ruby | "\u{116D}" |