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