C:
char c = '\u0307';
printf("%c\n", c); // Output: ̇
JavaScript:
const char = '\u0307';
console.log(char); // Output: ̇
Java:
char c = '\u0307';
System.out.println(c); // Output: ̇
JSON:
{"text": "\u0307"} // Value: ̇
Python:
char = '\u0307'
print(char) # Output: ̇
Perl:
my $char = "\x{0307}";
print $char; # Output: ̇
PHP:
$char = "\x{0307}";
echo $char; // Output: ̇
Ruby:
char = "\u{0307}"
puts char # Output: ̇
Rust:
let c = '\u{307}';
println!("{}", c); // Output: ̇
Go:
char := '\u0307'
fmt.Printf("%c\n", char) // Output: ̇
CSS:
/* CSS content property */
.element::before {
content: "\000307"; /* 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%87
MD5:
578ca479db69160dd8e9b0897af54104
SHA1:
8b3d5507a167d874ab4377126cae2eef68eeb713
Base64:
zIc=