Unicode Finder

"ዯ" U+12EF(ETHIOPIC SYLLABLE YOA)

U+12EF
Nom du Bloc
Ethiopic
Nom
ETHIOPIC SYLLABLE YOA

Programming

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

Web

CSS
\0012EF
HtmlDecimal
ዯ
HtmlHexadecimal
ዯ
Url
%E1%8B%AF

Code

MD5
c9b023d8bb2333efe75c756c204b0c81
Sha1
c5dd97440b10595560347b2ace70fe31dd823c5f
Base64
4Yuv

Exemples d'Utilisation

Programming Languages

C:

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

JavaScript:

const char = '\u12EF';
console.log(char);  // Output: ዯ

Java:

char c = '\u12EF';
System.out.println(c);  // Output: ዯ

JSON:

{"text": "\u12EF"}  // Value: ዯ

Python:

char = '\u12EF'
print(char)  # Output: ዯ

Perl:

my $char = "\x{12EF}";
print $char;  # Output: ዯ

PHP:

$char = "\x{12EF}";
echo $char;  // Output: ዯ

Ruby:

char = "\u{12EF}"
puts char  # Output: ዯ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#4847;</p>  <!-- Display: ዯ -->

HTML Hexadecimal:

<p>HTML hex: &#x12EF;</p>  <!-- Display: ዯ -->

URL Encoding:

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

Encodings

MD5:

c9b023d8bb2333efe75c756c204b0c81

SHA1:

c5dd97440b10595560347b2ace70fe31dd823c5f

Base64:

4Yuv