Unicode Finder

"ሏ" U+120F(ETHIOPIC SYLLABLE LWA)

U+120F
بلاک کا نام
Ethiopic
نام
ETHIOPIC SYLLABLE LWA

Programming

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

Web

CSS
\00120F
HtmlDecimal
ሏ
HtmlHexadecimal
ሏ
Url
%E1%88%8F

Code

MD5
a4d1eb73aa3e136ce18bfc33957e1216
Sha1
f72dc98ba99937fd78ea52ccc4c14f4e8c2f3377
Base64
4YiP

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

Programming Languages

C:

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

JavaScript:

const char = '\u120F';
console.log(char);  // Output: ሏ

Java:

char c = '\u120F';
System.out.println(c);  // Output: ሏ

JSON:

{"text": "\u120F"}  // Value: ሏ

Python:

char = '\u120F'
print(char)  # Output: ሏ

Perl:

my $char = "\x{120F}";
print $char;  # Output: ሏ

PHP:

$char = "\x{120F}";
echo $char;  // Output: ሏ

Ruby:

char = "\u{120F}"
puts char  # Output: ሏ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#4623;</p>  <!-- Display: ሏ -->

HTML Hexadecimal:

<p>HTML hex: &#x120F;</p>  <!-- Display: ሏ -->

URL Encoding:

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

Encodings

MD5:

a4d1eb73aa3e136ce18bfc33957e1216

SHA1:

f72dc98ba99937fd78ea52ccc4c14f4e8c2f3377

Base64:

4YiP