Unicode Finder

"ⶤ" U+2DA4(ETHIOPIC SYLLABLE SSEE)

U+2DA4
Block Name
Ethiopic Extended
Name
ETHIOPIC SYLLABLE SSEE

Programming

C
\u2DA4
JavaScript
\u2DA4
Java
\u2DA4
Json
\u2DA4
Python
\u2DA4
Perl
\x{2DA4}
PHP
\x{2DA4}
Ruby
\u{2DA4}
Rust
\u{2DA4}
Go
\u2DA4

Web

CSS
\002DA4
HtmlDecimal
ⶤ
HtmlHexadecimal
ⶤ
Url
%E2%B6%A4

Code

MD5
954cffe3dd4c9be092ac0beae1bae026
Sha1
f5f4c62bce2cf062c28e7a78d0ee703bcb59a324
Base64
4rak

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2DA4';
console.log(char);  // Output: ⶤ

Java:

char c = '\u2DA4';
System.out.println(c);  // Output: ⶤ

JSON:

{"text": "\u2DA4"}  // Value: ⶤ

Python:

char = '\u2DA4'
print(char)  # Output: ⶤ

Perl:

my $char = "\x{2DA4}";
print $char;  # Output: ⶤ

PHP:

$char = "\x{2DA4}";
echo $char;  // Output: ⶤ

Ruby:

char = "\u{2DA4}"
puts char  # Output: ⶤ

Rust:

let c = '\u{2DA4}';
println!("{}", c);  // Output: ⶤ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002DA4";  /* Display: ⶤ */
}

HTML Decimal:

<p>HTML decimal: &#11684;</p>  <!-- Display: ⶤ -->

HTML Hexadecimal:

<p>HTML hex: &#x2DA4;</p>  <!-- Display: ⶤ -->

URL Encoding:

// ⶤ URL encoding
https://unicodefinder.com/search.php?query=%E2%B6%A4

Encodings

MD5:

954cffe3dd4c9be092ac0beae1bae026

SHA1:

f5f4c62bce2cf062c28e7a78d0ee703bcb59a324

Base64:

4rak