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