C:
char c = '\u0302';
printf("%c\n", c); // Output: ̂
JavaScript:
const char = '\u0302';
console.log(char); // Output: ̂
Java:
char c = '\u0302';
System.out.println(c); // Output: ̂
JSON:
{"text": "\u0302"} // Value: ̂
Python:
char = '\u0302'
print(char) # Output: ̂
Perl:
my $char = "\x{0302}";
print $char; # Output: ̂
PHP:
$char = "\x{0302}";
echo $char; // Output: ̂
Ruby:
char = "\u{0302}"
puts char # Output: ̂
Rust:
let c = '\u{302}';
println!("{}", c); // Output: ̂
Go:
char := '\u0302'
fmt.Printf("%c\n", char) // Output: ̂
CSS:
/* CSS content property */
.element::before {
content: "\000302"; /* 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%82
MD5:
9ffb6bcd5c4208eba9fb542f0b56d32a
SHA1:
393cdcdc2e24c03bdd06bec2aa3736eb3c73ddf3
Base64:
zII=