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