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