C:
char c = '\u5244';
printf("%c\n", c); // Output: 剄
JavaScript:
const char = '\u5244';
console.log(char); // Output: 剄
Java:
char c = '\u5244';
System.out.println(c); // Output: 剄
JSON:
{"text": "\u5244"} // Value: 剄
Python:
char = '\u5244'
print(char) # Output: 剄
Perl:
my $char = "\x{5244}";
print $char; # Output: 剄
PHP:
$char = "\x{5244}";
echo $char; // Output: 剄
Ruby:
char = "\u{5244}"
puts char # Output: 剄
Rust:
let c = '\u{5244}';
println!("{}", c); // Output: 剄
Go:
char := '\u5244'
fmt.Printf("%c\n", char) // Output: 剄
CSS:
/* CSS content property */
.element::before {
content: "\005244"; /* 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%89%84
MD5:
fb9006f561e9a7675df45ba1930e58c3
SHA1:
5b14657eeafc7f1a01acd554639ebb78a91ff76c
Base64:
5YmE