| 記号名 | Latin Small Letter L With Caron |
| Unicodeバージョン | 1.1 |
| Unicode | U+013E |
| Unicodeブロック | |
| 一般カテゴリ | Lowercase Letter (Ll) |
| CSSコード | \013E |
| 16進コード | 0x013E |
| HTMLコード | ľ |
| LaTeX | \text{LATINSMALLLETTERLWITHCARON} |
| 記号 | ľ |
| URLエンコード(UTF-8パーセント) | %C4%BE |
| 読み上げ名 / スクリーンリーダー | Latin Small Letter L With Caron |
| UTF-8 | C4 BE |
| UTF-16 | 013E |
| UTF-32 | 0000013E |
1\documentclass{article}2\usepackage{pifont}3\text{LATINSMALLLETTERLWITHCARON}4\end{document}以下の方法でほとんどの最新デバイスでlatin small letter l with caron記号を入力できます:
Alt + 318 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "latin small letter l with caron", or use Unicode Hex Input with 013E.
Ctrl + Shift + U, type 013e, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the Latin keyboard.
Paste from this page or use a keyboard with Latin letter support.
1span.latin-small-letter-l-with-caron::before { content: "\013E"; font-family: "Charis SIL", "Doulos SIL", "DejaVu Serif", "Times New Roman", serif; }1<span>ľ</span>各プログラミング言語におけるLatin Small Letter L With Caron記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u013E' or String.fromCodePoint(318) |
| Python | '\N{LATIN SMALL LETTER L WITH CARON}' or chr(318) |
| Rust | '\u{013E}' |
| C / C++ | UTF-8 source or wchar_t with U+013E |
| Go | string(rune(0x013E)) |
| Ruby | "\u{013E}" |