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