C:
char c = '\u0040';
printf("%c\n", c); // Output: @
JavaScript:
const char = '\u0040';
console.log(char); // Output: @
Java:
char c = '\u0040';
System.out.println(c); // Output: @
JSON:
{"text": "\u0040"} // Value: @
Python:
char = '\u0040'
print(char) # Output: @
Perl:
my $char = "\x{0040}";
print $char; # Output: @
PHP:
$char = "\x{0040}";
echo $char; // Output: @
Ruby:
char = "\u{0040}"
puts char # Output: @
Rust:
let c = '\u{40}';
println!("{}", c); // Output: @
Go:
char := '\u0040'
fmt.Printf("%c\n", char) // Output: @
CSS:
/* CSS content property */
.element::before {
content: "\000040"; /* 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=%40
MD5:
518ed29525738cebdac49c49e60ea9d3
SHA1:
9a78211436f6d425ec38f5c4e02270801f3524f8
Base64:
QA==