Unicode Finder

"ህ" U+1205(ETHIOPIC SYLLABLE HE)

U+1205
Назва Блоку
Ethiopic
Назва
ETHIOPIC SYLLABLE HE

Programming

C
\u1205
JavaScript
\u1205
Java
\u1205
Json
\u1205
Python
\u1205
Perl
\x{1205}
PHP
\x{1205}
Ruby
\u{1205}
Rust
\u{1205}
Go
\u1205

Web

CSS
\001205
HtmlDecimal
ህ
HtmlHexadecimal
ህ
Url
%E1%88%85

Code

MD5
0cad281159bbf0e39eb8550fa8763b1a
Sha1
40d0029c186aadf21319d360f34588cabe7bde8f
Base64
4YiF

Приклади Використання

Programming Languages

C:

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

JavaScript:

const char = '\u1205';
console.log(char);  // Output: ህ

Java:

char c = '\u1205';
System.out.println(c);  // Output: ህ

JSON:

{"text": "\u1205"}  // Value: ህ

Python:

char = '\u1205'
print(char)  # Output: ህ

Perl:

my $char = "\x{1205}";
print $char;  # Output: ህ

PHP:

$char = "\x{1205}";
echo $char;  // Output: ህ

Ruby:

char = "\u{1205}"
puts char  # Output: ህ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001205";  /* Display: ህ */
}

HTML Decimal:

<p>HTML decimal: &#4613;</p>  <!-- Display: ህ -->

HTML Hexadecimal:

<p>HTML hex: &#x1205;</p>  <!-- Display: ህ -->

URL Encoding:

// ህ URL encoding
https://unicodefinder.com/search.php?query=%E1%88%85

Encodings

MD5:

0cad281159bbf0e39eb8550fa8763b1a

SHA1:

40d0029c186aadf21319d360f34588cabe7bde8f

Base64:

4YiF