C:
char c = '\u0308';
printf("%c\n", c); // Output: ̈
JavaScript:
const char = '\u0308';
console.log(char); // Output: ̈
Java:
char c = '\u0308';
System.out.println(c); // Output: ̈
JSON:
{"text": "\u0308"} // Value: ̈
Python:
char = '\u0308'
print(char) # Output: ̈
Perl:
my $char = "\x{0308}";
print $char; # Output: ̈
PHP:
$char = "\x{0308}";
echo $char; // Output: ̈
Ruby:
char = "\u{0308}"
puts char # Output: ̈
Rust:
let c = '\u{308}';
println!("{}", c); // Output: ̈
Go:
char := '\u0308'
fmt.Printf("%c\n", char) // Output: ̈
CSS:
/* CSS content property */
.element::before {
content: "\000308"; /* 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%88
MD5:
82d5065bc93310b9fa0e6a45b13669f7
SHA1:
346f07969008331435b3b2e661026fcb35f2bb56
Base64:
zIg=