C:
char c = '\u5472';
printf("%c\n", c); // Output: 呲
JavaScript:
const char = '\u5472';
console.log(char); // Output: 呲
Java:
char c = '\u5472';
System.out.println(c); // Output: 呲
JSON:
{"text": "\u5472"} // Value: 呲
Python:
char = '\u5472'
print(char) # Output: 呲
Perl:
my $char = "\x{5472}";
print $char; # Output: 呲
PHP:
$char = "\x{5472}";
echo $char; // Output: 呲
Ruby:
char = "\u{5472}"
puts char # Output: 呲
Rust:
let c = '\u{5472}';
println!("{}", c); // Output: 呲
Go:
char := '\u5472'
fmt.Printf("%c\n", char) // Output: 呲
CSS:
/* CSS content property */
.element::before {
content: "\005472"; /* 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%91%B2
MD5:
efd393b48b84e7e25a493c7c3f2808bd
SHA1:
1af74c3dba493d776646157aa0ad24608a4a684f
Base64:
5ZGy