C:
char c = '\u0306';
printf("%c\n", c); // Output: ̆
JavaScript:
const char = '\u0306';
console.log(char); // Output: ̆
Java:
char c = '\u0306';
System.out.println(c); // Output: ̆
JSON:
{"text": "\u0306"} // Value: ̆
Python:
char = '\u0306'
print(char) # Output: ̆
Perl:
my $char = "\x{0306}";
print $char; # Output: ̆
PHP:
$char = "\x{0306}";
echo $char; // Output: ̆
Ruby:
char = "\u{0306}"
puts char # Output: ̆
Rust:
let c = '\u{306}';
println!("{}", c); // Output: ̆
Go:
char := '\u0306'
fmt.Printf("%c\n", char) // Output: ̆
CSS:
/* CSS content property */
.element::before {
content: "\000306"; /* 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%86
MD5:
7b9cff6edca243236de6fd89a97c8482
SHA1:
79993e5f1cf6acd71048144e721f812ca05cc505
Base64:
zIY=