C:
char c = '\u0309';
printf("%c\n", c); // Output: ̉
JavaScript:
const char = '\u0309';
console.log(char); // Output: ̉
Java:
char c = '\u0309';
System.out.println(c); // Output: ̉
JSON:
{"text": "\u0309"} // Value: ̉
Python:
char = '\u0309'
print(char) # Output: ̉
Perl:
my $char = "\x{0309}";
print $char; # Output: ̉
PHP:
$char = "\x{0309}";
echo $char; // Output: ̉
Ruby:
char = "\u{0309}"
puts char # Output: ̉
Rust:
let c = '\u{309}';
println!("{}", c); // Output: ̉
Go:
char := '\u0309'
fmt.Printf("%c\n", char) // Output: ̉
CSS:
/* CSS content property */
.element::before {
content: "\000309"; /* 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%89
MD5:
0920a317b2a009b3863add85271a2b94
SHA1:
7a1b8c66e30c781a4d21371c02366058a01d38ab
Base64:
zIk=