Unicode Finder

"ዐ" U+12D0(ETHIOPIC SYLLABLE PHARYNGEAL A)

U+12D0
Blockname
Ethiopic
Name
ETHIOPIC SYLLABLE PHARYNGEAL A

Programming

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

Web

CSS
\0012D0
HtmlDecimal
ዐ
HtmlHexadecimal
ዐ
Url
%E1%8B%90

Code

MD5
6661995fee9f9f0cf4f161a825e7f9b6
Sha1
03de0a8f9435f76f1bced37996f09d6133c2dc01
Base64
4YuQ

Verwendungsbeispiele

Programming Languages

C:

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

JavaScript:

const char = '\u12D0';
console.log(char);  // Output: ዐ

Java:

char c = '\u12D0';
System.out.println(c);  // Output: ዐ

JSON:

{"text": "\u12D0"}  // Value: ዐ

Python:

char = '\u12D0'
print(char)  # Output: ዐ

Perl:

my $char = "\x{12D0}";
print $char;  # Output: ዐ

PHP:

$char = "\x{12D0}";
echo $char;  // Output: ዐ

Ruby:

char = "\u{12D0}"
puts char  # Output: ዐ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#4816;</p>  <!-- Display: ዐ -->

HTML Hexadecimal:

<p>HTML hex: &#x12D0;</p>  <!-- Display: ዐ -->

URL Encoding:

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

Encodings

MD5:

6661995fee9f9f0cf4f161a825e7f9b6

SHA1:

03de0a8f9435f76f1bced37996f09d6133c2dc01

Base64:

4YuQ