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