Unicode Finder

"ዬ" U+12EC(ETHIOPIC SYLLABLE YEE)

U+12EC
اسم الكتلة
Ethiopic
الاسم
ETHIOPIC SYLLABLE YEE

Programming

C
\u12EC
JavaScript
\u12EC
Java
\u12EC
Json
\u12EC
Python
\u12EC
Perl
\x{12EC}
PHP
\x{12EC}
Ruby
\u{12EC}
Rust
\u{12EC}
Go
\u12EC

Web

CSS
\0012EC
HtmlDecimal
ዬ
HtmlHexadecimal
ዬ
Url
%E1%8B%AC

Code

MD5
982ab201b0646d937bd2497d4b5cf083
Sha1
a076c301f0bddbeba85acd1c230cc2e4233058a8
Base64
4Yus

أمثلة الاستخدام

Programming Languages

C:

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

JavaScript:

const char = '\u12EC';
console.log(char);  // Output: ዬ

Java:

char c = '\u12EC';
System.out.println(c);  // Output: ዬ

JSON:

{"text": "\u12EC"}  // Value: ዬ

Python:

char = '\u12EC'
print(char)  # Output: ዬ

Perl:

my $char = "\x{12EC}";
print $char;  # Output: ዬ

PHP:

$char = "\x{12EC}";
echo $char;  // Output: ዬ

Ruby:

char = "\u{12EC}"
puts char  # Output: ዬ

Rust:

let c = '\u{12EC}';
println!("{}", c);  // Output: ዬ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0012EC";  /* Display: ዬ */
}

HTML Decimal:

<p>HTML decimal: &#4844;</p>  <!-- Display: ዬ -->

HTML Hexadecimal:

<p>HTML hex: &#x12EC;</p>  <!-- Display: ዬ -->

URL Encoding:

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

Encodings

MD5:

982ab201b0646d937bd2497d4b5cf083

SHA1:

a076c301f0bddbeba85acd1c230cc2e4233058a8

Base64:

4Yus