C:
char c = '\u5268';
printf("%c\n", c); // Output: 剨
JavaScript:
const char = '\u5268';
console.log(char); // Output: 剨
Java:
char c = '\u5268';
System.out.println(c); // Output: 剨
JSON:
{"text": "\u5268"} // Value: 剨
Python:
char = '\u5268'
print(char) # Output: 剨
Perl:
my $char = "\x{5268}";
print $char; # Output: 剨
PHP:
$char = "\x{5268}";
echo $char; // Output: 剨
Ruby:
char = "\u{5268}"
puts char # Output: 剨
Rust:
let c = '\u{5268}';
println!("{}", c); // Output: 剨
Go:
char := '\u5268'
fmt.Printf("%c\n", char) // Output: 剨
CSS:
/* CSS content property */
.element::before {
content: "\005268"; /* 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%A8
MD5:
0e43086da2f20c0c54a355de1766604f
SHA1:
4237d6f7ab807b717603989ae09625eaadafb64f
Base64:
5Ymo