Unicode Finder

"ⶢ" U+2DA2(ETHIOPIC SYLLABLE SSI)

U+2DA2
Block Name
Ethiopic Extended
Name
ETHIOPIC SYLLABLE SSI

Programming

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

Web

CSS
\002DA2
HtmlDecimal
ⶢ
HtmlHexadecimal
ⶢ
Url
%E2%B6%A2

Code

MD5
07f73372721c727c37e037e17f895962
Sha1
06a7386d2f8b35d43d88a1b5f716e4056911feac
Base64
4rai

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2DA2';
console.log(char);  // Output: ⶢ

Java:

char c = '\u2DA2';
System.out.println(c);  // Output: ⶢ

JSON:

{"text": "\u2DA2"}  // Value: ⶢ

Python:

char = '\u2DA2'
print(char)  # Output: ⶢ

Perl:

my $char = "\x{2DA2}";
print $char;  # Output: ⶢ

PHP:

$char = "\x{2DA2}";
echo $char;  // Output: ⶢ

Ruby:

char = "\u{2DA2}"
puts char  # Output: ⶢ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11682;</p>  <!-- Display: ⶢ -->

HTML Hexadecimal:

<p>HTML hex: &#x2DA2;</p>  <!-- Display: ⶢ -->

URL Encoding:

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

Encodings

MD5:

07f73372721c727c37e037e17f895962

SHA1:

06a7386d2f8b35d43d88a1b5f716e4056911feac

Base64:

4rai