Unicode Finder

"ዉ" U+12C9(ETHIOPIC SYLLABLE WU)

U+12C9
Nume Bloc
Ethiopic
Nume
ETHIOPIC SYLLABLE WU

Programming

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

Web

CSS
\0012C9
HtmlDecimal
ዉ
HtmlHexadecimal
ዉ
Url
%E1%8B%89

Code

MD5
0d58421554af994d6a0b668edaba3e25
Sha1
7d177cd6c335ea9b8e36b04c74da8e7889ef8f12
Base64
4YuJ

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u12C9';
console.log(char);  // Output: ዉ

Java:

char c = '\u12C9';
System.out.println(c);  // Output: ዉ

JSON:

{"text": "\u12C9"}  // Value: ዉ

Python:

char = '\u12C9'
print(char)  # Output: ዉ

Perl:

my $char = "\x{12C9}";
print $char;  # Output: ዉ

PHP:

$char = "\x{12C9}";
echo $char;  // Output: ዉ

Ruby:

char = "\u{12C9}"
puts char  # Output: ዉ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#4809;</p>  <!-- Display: ዉ -->

HTML Hexadecimal:

<p>HTML hex: &#x12C9;</p>  <!-- Display: ዉ -->

URL Encoding:

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

Encodings

MD5:

0d58421554af994d6a0b668edaba3e25

SHA1:

7d177cd6c335ea9b8e36b04c74da8e7889ef8f12

Base64:

4YuJ