C:
char c = '\u5C52';
printf("%c\n", c); // Output: 屒
JavaScript:
const char = '\u5C52';
console.log(char); // Output: 屒
Java:
char c = '\u5C52';
System.out.println(c); // Output: 屒
JSON:
{"text": "\u5C52"} // Value: 屒
Python:
char = '\u5C52'
print(char) # Output: 屒
Perl:
my $char = "\x{5C52}";
print $char; # Output: 屒
PHP:
$char = "\x{5C52}";
echo $char; // Output: 屒
Ruby:
char = "\u{5C52}"
puts char # Output: 屒
Rust:
let c = '\u{5C52}';
println!("{}", c); // Output: 屒
Go:
char := '\u5C52'
fmt.Printf("%c\n", char) // Output: 屒
CSS:
/* CSS content property */
.element::before {
content: "\005C52"; /* 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%B1%92
MD5:
fe7f6c48692c9acee1679fae6f6d90ec
SHA1:
0c5376403f828740102a16b83d086802d8e93e6b
Base64:
5bGS