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