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