Unicode Finder

"ዔ" U+12D4(ETHIOPIC SYLLABLE PHARYNGEAL EE)

U+12D4
Blockname
Ethiopic
Name
ETHIOPIC SYLLABLE PHARYNGEAL EE

Programming

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

Web

CSS
\0012D4
HtmlDecimal
ዔ
HtmlHexadecimal
ዔ
Url
%E1%8B%94

Code

MD5
1533355388f928b0d9614ccb69513960
Sha1
4db8108e2a24bed52c89d888135738bd1ff3bdb9
Base64
4YuU

Verwendungsbeispiele

Programming Languages

C:

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

JavaScript:

const char = '\u12D4';
console.log(char);  // Output: ዔ

Java:

char c = '\u12D4';
System.out.println(c);  // Output: ዔ

JSON:

{"text": "\u12D4"}  // Value: ዔ

Python:

char = '\u12D4'
print(char)  # Output: ዔ

Perl:

my $char = "\x{12D4}";
print $char;  # Output: ዔ

PHP:

$char = "\x{12D4}";
echo $char;  // Output: ዔ

Ruby:

char = "\u{12D4}"
puts char  # Output: ዔ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#4820;</p>  <!-- Display: ዔ -->

HTML Hexadecimal:

<p>HTML hex: &#x12D4;</p>  <!-- Display: ዔ -->

URL Encoding:

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

Encodings

MD5:

1533355388f928b0d9614ccb69513960

SHA1:

4db8108e2a24bed52c89d888135738bd1ff3bdb9

Base64:

4YuU