Unicode Finder

"ዙ" U+12D9(ETHIOPIC SYLLABLE ZU)

U+12D9
Nume Bloc
Ethiopic
Nume
ETHIOPIC SYLLABLE ZU

Programming

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

Web

CSS
\0012D9
HtmlDecimal
ዙ
HtmlHexadecimal
ዙ
Url
%E1%8B%99

Code

MD5
e1f6b27c752d4ce72d402383653e93d7
Sha1
40451e1dc38e6faa3316ea65e920cb7ae9ba0e7c
Base64
4YuZ

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u12D9';
console.log(char);  // Output: ዙ

Java:

char c = '\u12D9';
System.out.println(c);  // Output: ዙ

JSON:

{"text": "\u12D9"}  // Value: ዙ

Python:

char = '\u12D9'
print(char)  # Output: ዙ

Perl:

my $char = "\x{12D9}";
print $char;  # Output: ዙ

PHP:

$char = "\x{12D9}";
echo $char;  // Output: ዙ

Ruby:

char = "\u{12D9}"
puts char  # Output: ዙ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#4825;</p>  <!-- Display: ዙ -->

HTML Hexadecimal:

<p>HTML hex: &#x12D9;</p>  <!-- Display: ዙ -->

URL Encoding:

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

Encodings

MD5:

e1f6b27c752d4ce72d402383653e93d7

SHA1:

40451e1dc38e6faa3316ea65e920cb7ae9ba0e7c

Base64:

4YuZ