C:
char c = '\u0125';
printf("%c\n", c); // Output: ĥ
JavaScript:
const char = '\u0125';
console.log(char); // Output: ĥ
Java:
char c = '\u0125';
System.out.println(c); // Output: ĥ
JSON:
{"text": "\u0125"} // Value: ĥ
Python:
char = '\u0125'
print(char) # Output: ĥ
Perl:
my $char = "\x{0125}";
print $char; # Output: ĥ
PHP:
$char = "\x{0125}";
echo $char; // Output: ĥ
Ruby:
char = "\u{0125}"
puts char # Output: ĥ
Rust:
let c = '\u{125}';
println!("{}", c); // Output: ĥ
Go:
char := '\u0125'
fmt.Printf("%c\n", char) // Output: ĥ
CSS:
/* CSS content property */
.element::before {
content: "\000125"; /* 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%A5
MD5:
ec25514960e5040a81999e59f8d512fc
SHA1:
3e85536cc67513bd8bac0ea8c008dfc223459680
Base64:
xKU=