C:
char c = '\u00CA';
printf("%c\n", c); // Output: Ê
JavaScript:
const char = '\u00CA';
console.log(char); // Output: Ê
Java:
char c = '\u00CA';
System.out.println(c); // Output: Ê
JSON:
{"text": "\u00CA"} // Value: Ê
Python:
char = '\u00CA'
print(char) # Output: Ê
Perl:
my $char = "\x{00CA}";
print $char; # Output: Ê
PHP:
$char = "\x{00CA}";
echo $char; // Output: Ê
Ruby:
char = "\u{00CA}"
puts char # Output: Ê
Rust:
let c = '\u{CA}';
println!("{}", c); // Output: Ê
Go:
char := '\u00CA'
fmt.Printf("%c\n", char) // Output: Ê
CSS:
/* CSS content property */
.element::before {
content: "\0000CA"; /* 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=%C3%8A
MD5:
b1d64dc5e8b3f1f5f06cef68857e97d0
SHA1:
f4435e35d2b41225cebaab6adae50f78d70f574c
Base64:
w4o=