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