C:
char c = '\u0124';
printf("%c\n", c); // Output: Ĥ
JavaScript:
const char = '\u0124';
console.log(char); // Output: Ĥ
Java:
char c = '\u0124';
System.out.println(c); // Output: Ĥ
JSON:
{"text": "\u0124"} // Value: Ĥ
Python:
char = '\u0124'
print(char) # Output: Ĥ
Perl:
my $char = "\x{0124}";
print $char; # Output: Ĥ
PHP:
$char = "\x{0124}";
echo $char; // Output: Ĥ
Ruby:
char = "\u{0124}"
puts char # Output: Ĥ
Rust:
let c = '\u{124}';
println!("{}", c); // Output: Ĥ
Go:
char := '\u0124'
fmt.Printf("%c\n", char) // Output: Ĥ
CSS:
/* CSS content property */
.element::before {
content: "\000124"; /* 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%A4
MD5:
579f1767f0ef262305a4bb4aca34986c
SHA1:
0fe33419cbeac05b5e7bfea534ecdcd6b6600603
Base64:
xKQ=