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: Ħ
CSS:
/* CSS content property */
.element::before {
content: "\000126"; /* Display: Ħ */
}
HTML Decimal:
<p>HTML decimal: Ħ</p> <!-- Display: Ħ -->
HTML Hexadecimal:
<p>HTML hex: Ħ</p> <!-- Display: Ħ -->
URL Encoding:
// Ħ URL encoding
https://unicodefinder.com/search.php?query=%C4%A6
MD5:
e1fe0df9eb70ed8c9c60281bb6a3e3b7
SHA1:
bee331b7d5ed49c3ac53bc7a2df8777de5af1a1f
Base64:
xKY=