C:
char c = '\u0028';
printf("%c\n", c); // Output: (
JavaScript:
const char = '\u0028';
console.log(char); // Output: (
Java:
char c = '\u0028';
System.out.println(c); // Output: (
JSON:
{"text": "\u0028"} // Value: (
Python:
char = '\u0028'
print(char) # Output: (
Perl:
my $char = "\x{0028}";
print $char; # Output: (
PHP:
$char = "\x{0028}";
echo $char; // Output: (
Ruby:
char = "\u{0028}"
puts char # Output: (
Rust:
let c = '\u{28}';
println!("{}", c); // Output: (
Go:
char := '\u0028'
fmt.Printf("%c\n", char) // Output: (
CSS:
/* CSS content property */
.element::before {
content: "\000028"; /* 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=%28
MD5:
84c40473414caf2ed4a7b1283e48bbf4
SHA1:
28ed3a797da3c48c309a4ef792147f3c56cfec40
Base64:
KA==