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