Unicode Finder

"ል" U+120D(ETHIOPIC SYLLABLE LE)

U+120D
Назва Блоку
Ethiopic
Назва
ETHIOPIC SYLLABLE LE

Programming

C
\u120D
JavaScript
\u120D
Java
\u120D
Json
\u120D
Python
\u120D
Perl
\x{120D}
PHP
\x{120D}
Ruby
\u{120D}
Rust
\u{120D}
Go
\u120D

Web

CSS
\00120D
HtmlDecimal
ል
HtmlHexadecimal
ል
Url
%E1%88%8D

Code

MD5
a968828b6b9f4030e3f16799e6621fba
Sha1
d77c364031f354e99d38e45b2ad340cf0356b723
Base64
4YiN

Приклади Використання

Programming Languages

C:

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

JavaScript:

const char = '\u120D';
console.log(char);  // Output: ል

Java:

char c = '\u120D';
System.out.println(c);  // Output: ል

JSON:

{"text": "\u120D"}  // Value: ል

Python:

char = '\u120D'
print(char)  # Output: ል

Perl:

my $char = "\x{120D}";
print $char;  # Output: ል

PHP:

$char = "\x{120D}";
echo $char;  // Output: ል

Ruby:

char = "\u{120D}"
puts char  # Output: ል

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#4621;</p>  <!-- Display: ል -->

HTML Hexadecimal:

<p>HTML hex: &#x120D;</p>  <!-- Display: ል -->

URL Encoding:

// ል URL encoding
https://unicodefinder.com/search.php?query=%E1%88%8D

Encodings

MD5:

a968828b6b9f4030e3f16799e6621fba

SHA1:

d77c364031f354e99d38e45b2ad340cf0356b723

Base64:

4YiN