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