Unicode Finder

"Ḩ" U+1E28(LATIN CAPITAL LETTER H WITH CEDILLA)

U+1E28
שם בלוק
Latin Extended Additional
שם
LATIN CAPITAL LETTER H WITH CEDILLA

Programming

C
\u1E28
JavaScript
\u1E28
Java
\u1E28
Json
\u1E28
Python
\u1E28
Perl
\x{1E28}
PHP
\x{1E28}
Ruby
\u{1E28}
Rust
\u{1E28}
Go
\u1E28

Web

CSS
\001E28
HtmlDecimal
Ḩ
HtmlHexadecimal
Ḩ
Url
%E1%B8%A8

Code

MD5
a25c8bc3b3fbf52d6b0f23c52f5cb7b6
Sha1
d031825b471105ed540c1857a248fa110a91699e
Base64
4bio

דוגמאות שימוש

Programming Languages

C:

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

JavaScript:

const char = '\u1E28';
console.log(char);  // Output: Ḩ

Java:

char c = '\u1E28';
System.out.println(c);  // Output: Ḩ

JSON:

{"text": "\u1E28"}  // Value: Ḩ

Python:

char = '\u1E28'
print(char)  # Output: Ḩ

Perl:

my $char = "\x{1E28}";
print $char;  # Output: Ḩ

PHP:

$char = "\x{1E28}";
echo $char;  // Output: Ḩ

Ruby:

char = "\u{1E28}"
puts char  # Output: Ḩ

Rust:

let c = '\u{1E28}';
println!("{}", c);  // Output: Ḩ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001E28";  /* Display: Ḩ */
}

HTML Decimal:

<p>HTML decimal: &#7720;</p>  <!-- Display: Ḩ -->

HTML Hexadecimal:

<p>HTML hex: &#x1E28;</p>  <!-- Display: Ḩ -->

URL Encoding:

// Ḩ URL encoding
https://unicodefinder.com/search.php?query=%E1%B8%A8

Encodings

MD5:

a25c8bc3b3fbf52d6b0f23c52f5cb7b6

SHA1:

d031825b471105ed540c1857a248fa110a91699e

Base64:

4bio