C:
char c = '\u0328';
printf("%c\n", c); // Output: ̨
JavaScript:
const char = '\u0328';
console.log(char); // Output: ̨
Java:
char c = '\u0328';
System.out.println(c); // Output: ̨
JSON:
{"text": "\u0328"} // Value: ̨
Python:
char = '\u0328'
print(char) # Output: ̨
Perl:
my $char = "\x{0328}";
print $char; # Output: ̨
PHP:
$char = "\x{0328}";
echo $char; // Output: ̨
Ruby:
char = "\u{0328}"
puts char # Output: ̨
Rust:
let c = '\u{328}';
println!("{}", c); // Output: ̨
Go:
char := '\u0328'
fmt.Printf("%c\n", char) // Output: ̨
CSS:
/* CSS content property */
.element::before {
content: "\000328"; /* 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%A8
MD5:
d4e8a7c463caef4112963505b30277d4
SHA1:
cc38c1ff200c2bc0adfa7660e6c4bb2fc572bf60
Base64:
zKg=