C:
char c = '\u5047';
printf("%c\n", c); // Output: 假
JavaScript:
const char = '\u5047';
console.log(char); // Output: 假
Java:
char c = '\u5047';
System.out.println(c); // Output: 假
JSON:
{"text": "\u5047"} // Value: 假
Python:
char = '\u5047'
print(char) # Output: 假
Perl:
my $char = "\x{5047}";
print $char; # Output: 假
PHP:
$char = "\x{5047}";
echo $char; // Output: 假
Ruby:
char = "\u{5047}"
puts char # Output: 假
Rust:
let c = '\u{5047}';
println!("{}", c); // Output: 假
Go:
char := '\u5047'
fmt.Printf("%c\n", char) // Output: 假
CSS:
/* CSS content property */
.element::before {
content: "\005047"; /* 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=%E5%81%87
MD5:
21b8ad624733166e29149399e35df3bc
SHA1:
3eab973eae4ce9a226bfe3a343a6f99c6ab26efe
Base64:
5YGH