C:
char c = '\u20AC';
printf("%c\n", c); // Output: €
JavaScript:
const char = '\u20AC';
console.log(char); // Output: €
Java:
char c = '\u20AC';
System.out.println(c); // Output: €
JSON:
{"text": "\u20AC"} // Value: €
Python:
char = '\u20AC'
print(char) # Output: €
Perl:
my $char = "\x{20AC}";
print $char; # Output: €
PHP:
$char = "\x{20AC}";
echo $char; // Output: €
Ruby:
char = "\u{20AC}"
puts char # Output: €
Rust:
let c = '\u{20AC}';
println!("{}", c); // Output: €
Go:
char := '\u20AC'
fmt.Printf("%c\n", char) // Output: €
CSS:
/* CSS content property */
.element::before {
content: "\0020AC"; /* 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=%E2%82%AC
MD5:
bca53fde466a76b7bee3e18997e94a7a
SHA1:
83fc867a6ea7bf1ca105aec9a1b81234e0aec40e
Base64:
4oKs