Unicode Finder

"Ł" U+0141(LATIN CAPITAL LETTER L WITH STROKE)

Ł
U+0141
Block Name
Latin Extended-A
Name
LATIN CAPITAL LETTER L WITH STROKE

Programming

C
\u0141
JavaScript
\u0141
Java
\u0141
Json
\u0141
Python
\u0141
Perl
\x{0141}
PHP
\x{0141}
Ruby
\u{0141}
Rust
\u{141}
Go
\u0141

Web

CSS
\000141
HtmlDecimal
Ł
HtmlHexadecimal
Ł
Url
%C5%81

Code

MD5
892e100e17e1b1c24bc48b3ee1aaabe0
Sha1
91ab76893a9954572453fee00f2161fbc1b3f9ca
Base64
xYE=

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u0141';
console.log(char);  // Output: Ł

Java:

char c = '\u0141';
System.out.println(c);  // Output: Ł

JSON:

{"text": "\u0141"}  // Value: Ł

Python:

char = '\u0141'
print(char)  # Output: Ł

Perl:

my $char = "\x{0141}";
print $char;  # Output: Ł

PHP:

$char = "\x{0141}";
echo $char;  // Output: Ł

Ruby:

char = "\u{0141}"
puts char  # Output: Ł

Rust:

let c = '\u{141}';
println!("{}", c);  // Output: Ł

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000141";  /* Display: Ł */
}

HTML Decimal:

<p>HTML decimal: &#321;</p>  <!-- Display: Ł -->

HTML Hexadecimal:

<p>HTML hex: &#x0141;</p>  <!-- Display: Ł -->

URL Encoding:

// Ł URL encoding
https://unicodefinder.com/search.php?query=%C5%81

Encodings

MD5:

892e100e17e1b1c24bc48b3ee1aaabe0

SHA1:

91ab76893a9954572453fee00f2161fbc1b3f9ca

Base64:

xYE=