C:
char c = '\u6253';
printf("%c\n", c); // Output: 打
JavaScript:
const char = '\u6253';
console.log(char); // Output: 打
Java:
char c = '\u6253';
System.out.println(c); // Output: 打
JSON:
{"text": "\u6253"} // Value: 打
Python:
char = '\u6253'
print(char) # Output: 打
Perl:
my $char = "\x{6253}";
print $char; # Output: 打
PHP:
$char = "\x{6253}";
echo $char; // Output: 打
Ruby:
char = "\u{6253}"
puts char # Output: 打
Rust:
let c = '\u{6253}';
println!("{}", c); // Output: 打
Go:
char := '\u6253'
fmt.Printf("%c\n", char) // Output: 打
CSS:
/* CSS content property */
.element::before {
content: "\006253"; /* 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=%E6%89%93
MD5:
0e1ceeea4671010ed3125100bd726293
SHA1:
6919d5be906e36aa9b9bd5593f3720aca1084eec
Base64:
5omT