C:
char c = '\u5257';
printf("%c\n", c); // Output: 剗
JavaScript:
const char = '\u5257';
console.log(char); // Output: 剗
Java:
char c = '\u5257';
System.out.println(c); // Output: 剗
JSON:
{"text": "\u5257"} // Value: 剗
Python:
char = '\u5257'
print(char) # Output: 剗
Perl:
my $char = "\x{5257}";
print $char; # Output: 剗
PHP:
$char = "\x{5257}";
echo $char; // Output: 剗
Ruby:
char = "\u{5257}"
puts char # Output: 剗
Rust:
let c = '\u{5257}';
println!("{}", c); // Output: 剗
Go:
char := '\u5257'
fmt.Printf("%c\n", char) // Output: 剗
CSS:
/* CSS content property */
.element::before {
content: "\005257"; /* 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%97
MD5:
da79fe35a3672f0eb50d77b1c9f1101c
SHA1:
32331be658d0e11c495ffe3d3918addbf02e0b90
Base64:
5YmX