Unicode Finder

"ዲ" U+12F2(ETHIOPIC SYLLABLE DI)

U+12F2
Nome do Bloco
Ethiopic
Nome
ETHIOPIC SYLLABLE DI

Programming

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

Web

CSS
\0012F2
HtmlDecimal
ዲ
HtmlHexadecimal
ዲ
Url
%E1%8B%B2

Code

MD5
806cd83dd61dbaafbc1dca77a23f1ead
Sha1
6e1bada9d56ae6e681ec8b0655421f44de541d10
Base64
4Yuy

Exemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u12F2';
console.log(char);  // Output: ዲ

Java:

char c = '\u12F2';
System.out.println(c);  // Output: ዲ

JSON:

{"text": "\u12F2"}  // Value: ዲ

Python:

char = '\u12F2'
print(char)  # Output: ዲ

Perl:

my $char = "\x{12F2}";
print $char;  # Output: ዲ

PHP:

$char = "\x{12F2}";
echo $char;  // Output: ዲ

Ruby:

char = "\u{12F2}"
puts char  # Output: ዲ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#4850;</p>  <!-- Display: ዲ -->

HTML Hexadecimal:

<p>HTML hex: &#x12F2;</p>  <!-- Display: ዲ -->

URL Encoding:

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

Encodings

MD5:

806cd83dd61dbaafbc1dca77a23f1ead

SHA1:

6e1bada9d56ae6e681ec8b0655421f44de541d10

Base64:

4Yuy