Unicode Finder

"ļ" U+013C(LATIN SMALL LETTER L WITH CEDILLA)

ļ
U+013C
Název Bloku
Latin Extended-A
Název
LATIN SMALL LETTER L WITH CEDILLA

Programming

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

Web

CSS
\00013C
HtmlDecimal
ļ
HtmlHexadecimal
ļ
Url
%C4%BC

Code

MD5
9960e059322236fd43c2ac9256395313
Sha1
e43e7c8befaa741c21f65fc2078b23a97bd3b6f7
Base64
xLw=

Příklady Použití

Programming Languages

C:

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

JavaScript:

const char = '\u013C';
console.log(char);  // Output: ļ

Java:

char c = '\u013C';
System.out.println(c);  // Output: ļ

JSON:

{"text": "\u013C"}  // Value: ļ

Python:

char = '\u013C'
print(char)  # Output: ļ

Perl:

my $char = "\x{013C}";
print $char;  # Output: ļ

PHP:

$char = "\x{013C}";
echo $char;  // Output: ļ

Ruby:

char = "\u{013C}"
puts char  # Output: ļ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#316;</p>  <!-- Display: ļ -->

HTML Hexadecimal:

<p>HTML hex: &#x013C;</p>  <!-- Display: ļ -->

URL Encoding:

// ļ URL encoding
https://unicodefinder.com/search.php?query=%C4%BC

Encodings

MD5:

9960e059322236fd43c2ac9256395313

SHA1:

e43e7c8befaa741c21f65fc2078b23a97bd3b6f7

Base64:

xLw=