Unicode Finder

"Ľ" U+013D(LATIN CAPITAL LETTER L WITH CARON)

Ľ
U+013D
Block Name
Latin Extended-A
Name
LATIN CAPITAL LETTER L WITH CARON

Programming

C
\u013D
JavaScript
\u013D
Java
\u013D
Json
\u013D
Python
\u013D
Perl
\x{013D}
PHP
\x{013D}
Ruby
\u{013D}
Rust
\u{13D}
Go
\u013D

Web

CSS
\00013D
HtmlDecimal
Ľ
HtmlHexadecimal
Ľ
Url
%C4%BD

Code

MD5
9ad3076eb11a10f5b6b03f5fa1f2764d
Sha1
680d9090d766e731423be42d0628c9344bbf6931
Base64
xL0=

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u013D';
console.log(char);  // Output: Ľ

Java:

char c = '\u013D';
System.out.println(c);  // Output: Ľ

JSON:

{"text": "\u013D"}  // Value: Ľ

Python:

char = '\u013D'
print(char)  # Output: Ľ

Perl:

my $char = "\x{013D}";
print $char;  # Output: Ľ

PHP:

$char = "\x{013D}";
echo $char;  // Output: Ľ

Ruby:

char = "\u{013D}"
puts char  # Output: Ľ

Rust:

let c = '\u{13D}';
println!("{}", c);  // Output: Ľ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00013D";  /* Display: Ľ */
}

HTML Decimal:

<p>HTML decimal: &#317;</p>  <!-- Display: Ľ -->

HTML Hexadecimal:

<p>HTML hex: &#x013D;</p>  <!-- Display: Ľ -->

URL Encoding:

// Ľ URL encoding
https://unicodefinder.com/search.php?query=%C4%BD

Encodings

MD5:

9ad3076eb11a10f5b6b03f5fa1f2764d

SHA1:

680d9090d766e731423be42d0628c9344bbf6931

Base64:

xL0=