Unicode Finder

"ⶭ" U+2DAD(ETHIOPIC SYLLABLE CCE)

U+2DAD
Block Name
Ethiopic Extended
Name
ETHIOPIC SYLLABLE CCE

Programming

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

Web

CSS
\002DAD
HtmlDecimal
ⶭ
HtmlHexadecimal
ⶭ
Url
%E2%B6%AD

Code

MD5
bce5fe3e95e83f06737037f1c458e03e
Sha1
f92ae8a8f1a0eeef16652fb251abb93c440fc842
Base64
4rat

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2DAD';
console.log(char);  // Output: ⶭ

Java:

char c = '\u2DAD';
System.out.println(c);  // Output: ⶭ

JSON:

{"text": "\u2DAD"}  // Value: ⶭ

Python:

char = '\u2DAD'
print(char)  # Output: ⶭ

Perl:

my $char = "\x{2DAD}";
print $char;  # Output: ⶭ

PHP:

$char = "\x{2DAD}";
echo $char;  // Output: ⶭ

Ruby:

char = "\u{2DAD}"
puts char  # Output: ⶭ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11693;</p>  <!-- Display: ⶭ -->

HTML Hexadecimal:

<p>HTML hex: &#x2DAD;</p>  <!-- Display: ⶭ -->

URL Encoding:

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

Encodings

MD5:

bce5fe3e95e83f06737037f1c458e03e

SHA1:

f92ae8a8f1a0eeef16652fb251abb93c440fc842

Base64:

4rat