C:
char c = '\u0304';
printf("%c\n", c); // Output: ̄
JavaScript:
const char = '\u0304';
console.log(char); // Output: ̄
Java:
char c = '\u0304';
System.out.println(c); // Output: ̄
JSON:
{"text": "\u0304"} // Value: ̄
Python:
char = '\u0304'
print(char) # Output: ̄
Perl:
my $char = "\x{0304}";
print $char; # Output: ̄
PHP:
$char = "\x{0304}";
echo $char; // Output: ̄
Ruby:
char = "\u{0304}"
puts char # Output: ̄
Rust:
let c = '\u{304}';
println!("{}", c); // Output: ̄
Go:
char := '\u0304'
fmt.Printf("%c\n", char) // Output: ̄
CSS:
/* CSS content property */
.element::before {
content: "\000304"; /* 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%84
MD5:
8108ac47c156e616df873dc402457ff3
SHA1:
3a0ad486951d448e3ac9fe2b5c7239d83b2d4cb4
Base64:
zIQ=