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