Unicode Finder

"ላ" U+120B(ETHIOPIC SYLLABLE LAA)

U+120B
بلاک کا نام
Ethiopic
نام
ETHIOPIC SYLLABLE LAA

Programming

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

Web

CSS
\00120B
HtmlDecimal
ላ
HtmlHexadecimal
ላ
Url
%E1%88%8B

Code

MD5
a2e068d2347fc7e5b545641ec3ad76ca
Sha1
0a62bf9e95109680f5628554a87de314dcffb003
Base64
4YiL

استعمال کی مثالیں

Programming Languages

C:

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

JavaScript:

const char = '\u120B';
console.log(char);  // Output: ላ

Java:

char c = '\u120B';
System.out.println(c);  // Output: ላ

JSON:

{"text": "\u120B"}  // Value: ላ

Python:

char = '\u120B'
print(char)  # Output: ላ

Perl:

my $char = "\x{120B}";
print $char;  # Output: ላ

PHP:

$char = "\x{120B}";
echo $char;  // Output: ላ

Ruby:

char = "\u{120B}"
puts char  # Output: ላ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#4619;</p>  <!-- Display: ላ -->

HTML Hexadecimal:

<p>HTML hex: &#x120B;</p>  <!-- Display: ላ -->

URL Encoding:

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

Encodings

MD5:

a2e068d2347fc7e5b545641ec3ad76ca

SHA1:

0a62bf9e95109680f5628554a87de314dcffb003

Base64:

4YiL