C:
char c = '\u0324';
printf("%c\n", c); // Output: ̤
JavaScript:
const char = '\u0324';
console.log(char); // Output: ̤
Java:
char c = '\u0324';
System.out.println(c); // Output: ̤
JSON:
{"text": "\u0324"} // Value: ̤
Python:
char = '\u0324'
print(char) # Output: ̤
Perl:
my $char = "\x{0324}";
print $char; # Output: ̤
PHP:
$char = "\x{0324}";
echo $char; // Output: ̤
Ruby:
char = "\u{0324}"
puts char # Output: ̤
Rust:
let c = '\u{324}';
println!("{}", c); // Output: ̤
Go:
char := '\u0324'
fmt.Printf("%c\n", char) // Output: ̤
CSS:
/* CSS content property */
.element::before {
content: "\000324"; /* 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=%CC%A4
MD5:
7b7f6e0282b96b34d118b3fdd033293b
SHA1:
d4cb6fd61d4460d84e4b343b363260cd06acc7bf
Base64:
zKQ=