Unicode Finder

"Ḷ" U+1E36(LATIN CAPITAL LETTER L WITH DOT BELOW)

U+1E36
Block Name
Latin Extended Additional
Name
LATIN CAPITAL LETTER L WITH DOT BELOW

Programming

C
\u1E36
JavaScript
\u1E36
Java
\u1E36
Json
\u1E36
Python
\u1E36
Perl
\x{1E36}
PHP
\x{1E36}
Ruby
\u{1E36}
Rust
\u{1E36}
Go
\u1E36

Web

CSS
\001E36
HtmlDecimal
Ḷ
HtmlHexadecimal
Ḷ
Url
%E1%B8%B6

Code

MD5
a01da065f1f9c6c86e9ef1c5434cdc37
Sha1
cbfbf968fe277d86912bac01c68078822a8dda1f
Base64
4bi2

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u1E36';
console.log(char);  // Output: Ḷ

Java:

char c = '\u1E36';
System.out.println(c);  // Output: Ḷ

JSON:

{"text": "\u1E36"}  // Value: Ḷ

Python:

char = '\u1E36'
print(char)  # Output: Ḷ

Perl:

my $char = "\x{1E36}";
print $char;  # Output: Ḷ

PHP:

$char = "\x{1E36}";
echo $char;  // Output: Ḷ

Ruby:

char = "\u{1E36}"
puts char  # Output: Ḷ

Rust:

let c = '\u{1E36}';
println!("{}", c);  // Output: Ḷ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001E36";  /* Display: Ḷ */
}

HTML Decimal:

<p>HTML decimal: &#7734;</p>  <!-- Display: Ḷ -->

HTML Hexadecimal:

<p>HTML hex: &#x1E36;</p>  <!-- Display: Ḷ -->

URL Encoding:

// Ḷ URL encoding
https://unicodefinder.com/search.php?query=%E1%B8%B6

Encodings

MD5:

a01da065f1f9c6c86e9ef1c5434cdc37

SHA1:

cbfbf968fe277d86912bac01c68078822a8dda1f

Base64:

4bi2