Unicode Finder

"ዜ" U+12DC(ETHIOPIC SYLLABLE ZEE)

U+12DC
Nom du Bloc
Ethiopic
Nom
ETHIOPIC SYLLABLE ZEE

Programming

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

Web

CSS
\0012DC
HtmlDecimal
ዜ
HtmlHexadecimal
ዜ
Url
%E1%8B%9C

Code

MD5
5e57f5189a98ab73ba4bf0299191b48d
Sha1
cfffd44acf673572c226c9d3a2638e18b5362d97
Base64
4Yuc

Exemples d'Utilisation

Programming Languages

C:

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

JavaScript:

const char = '\u12DC';
console.log(char);  // Output: ዜ

Java:

char c = '\u12DC';
System.out.println(c);  // Output: ዜ

JSON:

{"text": "\u12DC"}  // Value: ዜ

Python:

char = '\u12DC'
print(char)  # Output: ዜ

Perl:

my $char = "\x{12DC}";
print $char;  # Output: ዜ

PHP:

$char = "\x{12DC}";
echo $char;  // Output: ዜ

Ruby:

char = "\u{12DC}"
puts char  # Output: ዜ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#4828;</p>  <!-- Display: ዜ -->

HTML Hexadecimal:

<p>HTML hex: &#x12DC;</p>  <!-- Display: ዜ -->

URL Encoding:

// ዜ URL encoding
https://unicodefinder.com/search.php?query=%E1%8B%9C

Encodings

MD5:

5e57f5189a98ab73ba4bf0299191b48d

SHA1:

cfffd44acf673572c226c9d3a2638e18b5362d97

Base64:

4Yuc