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