Unicode Finder

"Ħ" U+0126(LATIN CAPITAL LETTER H WITH STROKE)

Ħ
U+0126
Block Name
Latin Extended-A
Name
LATIN CAPITAL LETTER H WITH STROKE

Programming

C
\u0126
JavaScript
\u0126
Java
\u0126
Json
\u0126
Python
\u0126
Perl
\x{0126}
PHP
\x{0126}
Ruby
\u{0126}
Rust
\u{126}
Go
\u0126

Web

CSS
\000126
HtmlDecimal
Ħ
HtmlHexadecimal
Ħ
Url
%C4%A6

Code

MD5
e1fe0df9eb70ed8c9c60281bb6a3e3b7
Sha1
bee331b7d5ed49c3ac53bc7a2df8777de5af1a1f
Base64
xKY=

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u0126';
console.log(char);  // Output: Ħ

Java:

char c = '\u0126';
System.out.println(c);  // Output: Ħ

JSON:

{"text": "\u0126"}  // Value: Ħ

Python:

char = '\u0126'
print(char)  # Output: Ħ

Perl:

my $char = "\x{0126}";
print $char;  # Output: Ħ

PHP:

$char = "\x{0126}";
echo $char;  // Output: Ħ

Ruby:

char = "\u{0126}"
puts char  # Output: Ħ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000126";  /* Display: Ħ */
}

HTML Decimal:

<p>HTML decimal: &#294;</p>  <!-- Display: Ħ -->

HTML Hexadecimal:

<p>HTML hex: &#x0126;</p>  <!-- Display: Ħ -->

URL Encoding:

// Ħ URL encoding
https://unicodefinder.com/search.php?query=%C4%A6

Encodings

MD5:

e1fe0df9eb70ed8c9c60281bb6a3e3b7

SHA1:

bee331b7d5ed49c3ac53bc7a2df8777de5af1a1f

Base64:

xKY=