C:
char c = '\u0334';
printf("%c\n", c); // Output: ̴
JavaScript:
const char = '\u0334';
console.log(char); // Output: ̴
Java:
char c = '\u0334';
System.out.println(c); // Output: ̴
JSON:
{"text": "\u0334"} // Value: ̴
Python:
char = '\u0334'
print(char) # Output: ̴
Perl:
my $char = "\x{0334}";
print $char; # Output: ̴
PHP:
$char = "\x{0334}";
echo $char; // Output: ̴
Ruby:
char = "\u{0334}"
puts char # Output: ̴
Rust:
let c = '\u{334}';
println!("{}", c); // Output: ̴
Go:
char := '\u0334'
fmt.Printf("%c\n", char) // Output: ̴
CSS:
/* CSS content property */
.element::before {
content: "\000334"; /* 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%B4
MD5:
af7e150cf665226e55371bb42546df42
SHA1:
46b0e6d0c8ba5c8617f6f5b970865604c9f87da5
Base64:
zLQ=