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