| 記号名 | Hangul Letter Nieun |
| Unicodeバージョン | 1.1 |
| Unicode | U+3134 |
| Unicodeブロック | |
| 一般カテゴリ | Other Letter (Lo) |
| CSSコード | \3134 |
| 16進コード | 0x3134 |
| HTMLコード | ㄴ |
| LaTeX | \hangul{3134} |
| 記号 | ㄴ |
| URLエンコード(UTF-8パーセント) | %E3%84%B4 |
| 読み上げ名 / スクリーンリーダー | Hangul Letter Nieun |
| UTF-8 | E3 84 B4 |
| UTF-16 | 3134 |
| UTF-32 | 00003134 |
1\documentclass{article}2\usepackage{pifont}3\hangul{3134}4\end{document}以下の方法でほとんどの最新デバイスでhangul letter nieun記号を入力できます:
Alt + 12596 on Windows (numeric keypad with Num Lock), or insert via Character Map / Korean IME.
Edit → Emoji & Symbols, search "hangul letter nieun", or use Unicode Hex Input with 3134.
Ctrl + Shift + U, type 3134, 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-letter-nieun::before { content: "\3134"; font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif; }1<span>ㄴ</span>各プログラミング言語におけるHangul Letter Nieun記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u3134' or String.fromCodePoint(12596) |
| Python | '\N{HANGUL LETTER NIEUN}' or chr(12596) |
| Rust | '\u{3134}' |
| C / C++ | UTF-8 source or wchar_t with U+3134 |
| Go | string(rune(0x3134)) |
| Ruby | "\u{3134}" |