| Nombre del símbolo | Litecoin Symbol |
| Versión Unicode | 1.1 |
| Unicode | U+0141 |
| Bloque Unicode | |
| Categoría general | Uppercase Letter (Lu) |
| Código CSS | \0141 |
| Código hexadecimal | 0x0141 |
| Código HTML | Ł |
| LaTeX | \L |
| Símbolo | Ł |
| Codificación URL (porcentaje UTF-8) | %C5%81 |
| Nombre oral / lector de pantalla | Litecoin Symbol |
| UTF-8 | C5 81 |
| UTF-16 | 0141 |
| UTF-32 | 00000141 |
1\documentclass{article}2\usepackage{pifont}3\L4\end{document}Puedes escribir el símbolo litecoin en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 0321 on the numeric keypad, or insert via Character Map (search "L with stroke").
Edit → Emoji & Symbols, search "L stroke", or use Polish keyboard layout (Alt + L).
Ctrl + Shift + U, type 0141, then Enter (layout-dependent).
Long-press the L key on supported keyboards, or paste from this page.
Long-press the L key on Gboard or SwiftKey to reveal accented variants including Ł.
1span.ltc::before { content: "\0141"; }1<span>Ł</span>La representación del símbolo Litecoin en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u0141' or String.fromCodePoint(0x0141) |
| Python | '\N{LATIN CAPITAL LETTER L WITH STROKE}' or chr(321) |
| Rust | '\u{0141}' |
| C / C++ | UTF-8 source or wchar_t with U+0141 |
| Go | string(rune(0x0141)) |
| Ruby | "\u0141" |