Unicode Finder

"l" U+006C(LATIN SMALL LETTER L)

l
U+006C
Block Name
Basic Latin
Name
LATIN SMALL LETTER L

Programming

C
\u006C
JavaScript
\u006C
Java
\u006C
Json
\u006C
Python
\u006C
Perl
\x{006C}
PHP
\x{006C}
Ruby
\u{006C}
Rust
\u{6C}
Go
\u006C

Web

CSS
\00006C
HtmlDecimal
l
HtmlHexadecimal
l
Url
l

Code

MD5
2db95e8e1a9267b7a1188556b2013b33
Sha1
07c342be6e560e7f43842e2e21b774e61d85f047
Base64
bA==

Usage Examples

Programming Languages

C:

char c = '\u006C';
printf("%c\n", c);  // Output: l

JavaScript:

const char = '\u006C';
console.log(char);  // Output: l

Java:

char c = '\u006C';
System.out.println(c);  // Output: l

JSON:

{"text": "\u006C"}  // Value: l

Python:

char = '\u006C'
print(char)  # Output: l

Perl:

my $char = "\x{006C}";
print $char;  # Output: l

PHP:

$char = "\x{006C}";
echo $char;  // Output: l

Ruby:

char = "\u{006C}"
puts char  # Output: l

Rust:

let c = '\u{6C}';
println!("{}", c);  // Output: l

Go:

char := '\u006C'
fmt.Printf("%c\n", char)  // Output: l

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00006C";  /* Display: l */
}

HTML Decimal:

<p>HTML decimal: &#108;</p>  <!-- Display: l -->

HTML Hexadecimal:

<p>HTML hex: &#x006C;</p>  <!-- Display: l -->

URL Encoding:

// l URL encoding
https://unicodefinder.com/search.php?query=l

Encodings

MD5:

2db95e8e1a9267b7a1188556b2013b33

SHA1:

07c342be6e560e7f43842e2e21b774e61d85f047

Base64:

bA==