Unicode Finder

"ᎂ" U+1382(ETHIOPIC SYLLABLE MWEE)

U+1382
Nama Blok
Ethiopic Supplement
Nama
ETHIOPIC SYLLABLE MWEE

Programming

C
\u1382
JavaScript
\u1382
Java
\u1382
Json
\u1382
Python
\u1382
Perl
\x{1382}
PHP
\x{1382}
Ruby
\u{1382}
Rust
\u{1382}
Go
\u1382

Web

CSS
\001382
HtmlDecimal
ᎂ
HtmlHexadecimal
ᎂ
Url
%E1%8E%82

Code

MD5
3f20d104f0c871db9132fd32c07fd95c
Sha1
9937f263571bc26935f667331692b7771aefcabf
Base64
4Y6C

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u1382';
console.log(char);  // Output: ᎂ

Java:

char c = '\u1382';
System.out.println(c);  // Output: ᎂ

JSON:

{"text": "\u1382"}  // Value: ᎂ

Python:

char = '\u1382'
print(char)  # Output: ᎂ

Perl:

my $char = "\x{1382}";
print $char;  # Output: ᎂ

PHP:

$char = "\x{1382}";
echo $char;  // Output: ᎂ

Ruby:

char = "\u{1382}"
puts char  # Output: ᎂ

Rust:

let c = '\u{1382}';
println!("{}", c);  // Output: ᎂ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001382";  /* Display: ᎂ */
}

HTML Decimal:

<p>HTML decimal: &#4994;</p>  <!-- Display: ᎂ -->

HTML Hexadecimal:

<p>HTML hex: &#x1382;</p>  <!-- Display: ᎂ -->

URL Encoding:

// ᎂ URL encoding
https://unicodefinder.com/search.php?query=%E1%8E%82

Encodings

MD5:

3f20d104f0c871db9132fd32c07fd95c

SHA1:

9937f263571bc26935f667331692b7771aefcabf

Base64:

4Y6C