| Symbol Name | Script Small L |
| Unicode Version | 1.1 |
| Unicode | U+2113 |
| Unicode block | |
| General category | Lowercase Letter (Ll) |
| CSS Code | \2113 |
| Hex Code | 0x2113 |
| HTML Code | ℓ |
| LaTeX | \mathrm{ℓ} |
| Symbol | ℓ |
| URL encode (UTF-8 percent) | %E2%84%93 |
| Spoken / screen reader name | Script Small L |
| UTF-8 | E2 84 93 |
| UTF-16 | 2113 |
| UTF-32 | 00002113 |
1\documentclass{article}2\usepackage{pifont}3\mathrm{ℓ}4\end{document}You can type the script small l symbol on most modern devices with the help of following methods:
Alt + 8467 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "script small l", or use Unicode Hex Input with 2113.
Ctrl + Shift + U, type 2113, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the symbol keyboard.
Paste from this page or use a keyboard with unit symbol support.
1span.script-small-l::before { content: "\2113"; }1<span>ℓ</span>Script Small L symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u2113' or String.fromCodePoint(0x2113) |
| Python | '\N{SCRIPT SMALL L}' or chr(8467) |
| Rust | '\u{2113}' |
| C / C++ | UTF-8 source or wchar_t with U+2113 |
| Go | string(rune(0x2113)) |
| Ruby | "\u2113" |