Unicode Finder

"ዖ" U+12D6(ETHIOPIC SYLLABLE PHARYNGEAL O)

U+12D6
Blockname
Ethiopic
Name
ETHIOPIC SYLLABLE PHARYNGEAL O

Programming

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

Web

CSS
\0012D6
HtmlDecimal
ዖ
HtmlHexadecimal
ዖ
Url
%E1%8B%96

Code

MD5
e527e336718c3976d4b250aa18e48f17
Sha1
c9ba60a645efef6ca33f6fb8b2d54561eab7ccc4
Base64
4YuW

Verwendungsbeispiele

Programming Languages

C:

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

JavaScript:

const char = '\u12D6';
console.log(char);  // Output: ዖ

Java:

char c = '\u12D6';
System.out.println(c);  // Output: ዖ

JSON:

{"text": "\u12D6"}  // Value: ዖ

Python:

char = '\u12D6'
print(char)  # Output: ዖ

Perl:

my $char = "\x{12D6}";
print $char;  # Output: ዖ

PHP:

$char = "\x{12D6}";
echo $char;  // Output: ዖ

Ruby:

char = "\u{12D6}"
puts char  # Output: ዖ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#4822;</p>  <!-- Display: ዖ -->

HTML Hexadecimal:

<p>HTML hex: &#x12D6;</p>  <!-- Display: ዖ -->

URL Encoding:

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

Encodings

MD5:

e527e336718c3976d4b250aa18e48f17

SHA1:

c9ba60a645efef6ca33f6fb8b2d54561eab7ccc4

Base64:

4YuW