Unicode Finder

"ዓ" U+12D3(ETHIOPIC SYLLABLE PHARYNGEAL AA)

U+12D3
Blockname
Ethiopic
Name
ETHIOPIC SYLLABLE PHARYNGEAL AA

Programming

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

Web

CSS
\0012D3
HtmlDecimal
ዓ
HtmlHexadecimal
ዓ
Url
%E1%8B%93

Code

MD5
f4e3ceeaf84428bfa3be05f503bf28c3
Sha1
6de6ece61b390af6e7981b8883fdf00eeca215c7
Base64
4YuT

Verwendungsbeispiele

Programming Languages

C:

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

JavaScript:

const char = '\u12D3';
console.log(char);  // Output: ዓ

Java:

char c = '\u12D3';
System.out.println(c);  // Output: ዓ

JSON:

{"text": "\u12D3"}  // Value: ዓ

Python:

char = '\u12D3'
print(char)  # Output: ዓ

Perl:

my $char = "\x{12D3}";
print $char;  # Output: ዓ

PHP:

$char = "\x{12D3}";
echo $char;  // Output: ዓ

Ruby:

char = "\u{12D3}"
puts char  # Output: ዓ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#4819;</p>  <!-- Display: ዓ -->

HTML Hexadecimal:

<p>HTML hex: &#x12D3;</p>  <!-- Display: ዓ -->

URL Encoding:

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

Encodings

MD5:

f4e3ceeaf84428bfa3be05f503bf28c3

SHA1:

6de6ece61b390af6e7981b8883fdf00eeca215c7

Base64:

4YuT