Unicode Finder

"ኅ" U+1285(ETHIOPIC SYLLABLE XE)

U+1285
Nome del Blocco
Ethiopic
Nome
ETHIOPIC SYLLABLE XE

Programming

C
\u1285
JavaScript
\u1285
Java
\u1285
Json
\u1285
Python
\u1285
Perl
\x{1285}
PHP
\x{1285}
Ruby
\u{1285}
Rust
\u{1285}
Go
\u1285

Web

CSS
\001285
HtmlDecimal
ኅ
HtmlHexadecimal
ኅ
Url
%E1%8A%85

Code

MD5
84984736b99dd72f381346136fc782fa
Sha1
88ba4f5043f90c3094931df086808147df677cbd
Base64
4YqF

Esempi di Utilizzo

Programming Languages

C:

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

JavaScript:

const char = '\u1285';
console.log(char);  // Output: ኅ

Java:

char c = '\u1285';
System.out.println(c);  // Output: ኅ

JSON:

{"text": "\u1285"}  // Value: ኅ

Python:

char = '\u1285'
print(char)  # Output: ኅ

Perl:

my $char = "\x{1285}";
print $char;  # Output: ኅ

PHP:

$char = "\x{1285}";
echo $char;  // Output: ኅ

Ruby:

char = "\u{1285}"
puts char  # Output: ኅ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001285";  /* Display: ኅ */
}

HTML Decimal:

<p>HTML decimal: &#4741;</p>  <!-- Display: ኅ -->

HTML Hexadecimal:

<p>HTML hex: &#x1285;</p>  <!-- Display: ኅ -->

URL Encoding:

// ኅ URL encoding
https://unicodefinder.com/search.php?query=%E1%8A%85

Encodings

MD5:

84984736b99dd72f381346136fc782fa

SHA1:

88ba4f5043f90c3094931df086808147df677cbd

Base64:

4YqF