| Symbol Name | Modifier Letter Small L |
| Unicode Version | 1.1 |
| Unicode | U+02E1 |
| Unicode block | |
| General category | Modifier Letter (Lm) |
| CSS Code | \02E1 |
| Hex Code | 0x02E1 |
| HTML Code | ˡ |
| LaTeX | \text{MODIFIERLETTERSMALLL} |
| Symbol | ˡ |
| URL encode (UTF-8 percent) | %CB%A1 |
| Spoken / screen reader name | Modifier Letter Small L |
| UTF-8 | CB A1 |
| UTF-16 | 02E1 |
| UTF-32 | 000002E1 |
1\documentclass{article}2\usepackage{pifont}3\text{MODIFIERLETTERSMALLL}4\end{document}You can type the modifier letter small l symbol on most modern devices with the help of following methods:
Alt + 737 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "modifier letter small l", or use Unicode Hex Input with 02E1.
Ctrl + Shift + U, type 02e1, 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.modifier-letter-small-l::before { content: "\02E1"; font-family: "Charis SIL", "Doulos SIL", "DejaVu Serif", "Times New Roman", serif; }1<span>ˡ</span>Modifier Letter Small L symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u02E1' or String.fromCodePoint(737) |
| Python | '\N{MODIFIER LETTER SMALL L}' or chr(737) |
| Rust | '\u{02E1}' |
| C / C++ | UTF-8 source or wchar_t with U+02E1 |
| Go | string(rune(0x02E1)) |
| Ruby | "\u{02E1}" |