Unicode Finder

"ሔ" U+1214(ETHIOPIC SYLLABLE HHEE)

U+1214
Nome del Blocco
Ethiopic
Nome
ETHIOPIC SYLLABLE HHEE

Programming

C
\u1214
JavaScript
\u1214
Java
\u1214
Json
\u1214
Python
\u1214
Perl
\x{1214}
PHP
\x{1214}
Ruby
\u{1214}
Rust
\u{1214}
Go
\u1214

Web

CSS
\001214
HtmlDecimal
ሔ
HtmlHexadecimal
ሔ
Url
%E1%88%94

Code

MD5
4e07d8357934faf37d062c1a5c34ace3
Sha1
6bfe4c9bf3804d38d8e3932a4e6e2a1ef3594832
Base64
4YiU

Esempi di Utilizzo

Programming Languages

C:

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

JavaScript:

const char = '\u1214';
console.log(char);  // Output: ሔ

Java:

char c = '\u1214';
System.out.println(c);  // Output: ሔ

JSON:

{"text": "\u1214"}  // Value: ሔ

Python:

char = '\u1214'
print(char)  # Output: ሔ

Perl:

my $char = "\x{1214}";
print $char;  # Output: ሔ

PHP:

$char = "\x{1214}";
echo $char;  // Output: ሔ

Ruby:

char = "\u{1214}"
puts char  # Output: ሔ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001214";  /* Display: ሔ */
}

HTML Decimal:

<p>HTML decimal: &#4628;</p>  <!-- Display: ሔ -->

HTML Hexadecimal:

<p>HTML hex: &#x1214;</p>  <!-- Display: ሔ -->

URL Encoding:

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

Encodings

MD5:

4e07d8357934faf37d062c1a5c34ace3

SHA1:

6bfe4c9bf3804d38d8e3932a4e6e2a1ef3594832

Base64:

4YiU