Unicode Finder

"ድ" U+12F5(ETHIOPIC SYLLABLE DE)

U+12F5
Nome do Bloco
Ethiopic
Nome
ETHIOPIC SYLLABLE DE

Programming

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

Web

CSS
\0012F5
HtmlDecimal
ድ
HtmlHexadecimal
ድ
Url
%E1%8B%B5

Code

MD5
3ee2d24725f25a4622c12c87f77f7490
Sha1
21d50b121f811643aae8b79ed218a531d6e0de03
Base64
4Yu1

Exemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u12F5';
console.log(char);  // Output: ድ

Java:

char c = '\u12F5';
System.out.println(c);  // Output: ድ

JSON:

{"text": "\u12F5"}  // Value: ድ

Python:

char = '\u12F5'
print(char)  # Output: ድ

Perl:

my $char = "\x{12F5}";
print $char;  # Output: ድ

PHP:

$char = "\x{12F5}";
echo $char;  // Output: ድ

Ruby:

char = "\u{12F5}"
puts char  # Output: ድ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#4853;</p>  <!-- Display: ድ -->

HTML Hexadecimal:

<p>HTML hex: &#x12F5;</p>  <!-- Display: ድ -->

URL Encoding:

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

Encodings

MD5:

3ee2d24725f25a4622c12c87f77f7490

SHA1:

21d50b121f811643aae8b79ed218a531d6e0de03

Base64:

4Yu1