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