Unicode Finder

"ሓ" U+1213(ETHIOPIC SYLLABLE HHAA)

U+1213
Nome del Blocco
Ethiopic
Nome
ETHIOPIC SYLLABLE HHAA

Programming

C
\u1213
JavaScript
\u1213
Java
\u1213
Json
\u1213
Python
\u1213
Perl
\x{1213}
PHP
\x{1213}
Ruby
\u{1213}
Rust
\u{1213}
Go
\u1213

Web

CSS
\001213
HtmlDecimal
ሓ
HtmlHexadecimal
ሓ
Url
%E1%88%93

Code

MD5
c2548a8e4ac4f653708802d2fe60ac52
Sha1
0dc6e5b725c07fc7bd412c2731c5d1fc9f22129a
Base64
4YiT

Esempi di Utilizzo

Programming Languages

C:

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

JavaScript:

const char = '\u1213';
console.log(char);  // Output: ሓ

Java:

char c = '\u1213';
System.out.println(c);  // Output: ሓ

JSON:

{"text": "\u1213"}  // Value: ሓ

Python:

char = '\u1213'
print(char)  # Output: ሓ

Perl:

my $char = "\x{1213}";
print $char;  # Output: ሓ

PHP:

$char = "\x{1213}";
echo $char;  // Output: ሓ

Ruby:

char = "\u{1213}"
puts char  # Output: ሓ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001213";  /* Display: ሓ */
}

HTML Decimal:

<p>HTML decimal: &#4627;</p>  <!-- Display: ሓ -->

HTML Hexadecimal:

<p>HTML hex: &#x1213;</p>  <!-- Display: ሓ -->

URL Encoding:

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

Encodings

MD5:

c2548a8e4ac4f653708802d2fe60ac52

SHA1:

0dc6e5b725c07fc7bd412c2731c5d1fc9f22129a

Base64:

4YiT