C:
char c = '\u5256';
printf("%c\n", c); // Output: 剖
JavaScript:
const char = '\u5256';
console.log(char); // Output: 剖
Java:
char c = '\u5256';
System.out.println(c); // Output: 剖
JSON:
{"text": "\u5256"} // Value: 剖
Python:
char = '\u5256'
print(char) # Output: 剖
Perl:
my $char = "\x{5256}";
print $char; # Output: 剖
PHP:
$char = "\x{5256}";
echo $char; // Output: 剖
Ruby:
char = "\u{5256}"
puts char # Output: 剖
Rust:
let c = '\u{5256}';
println!("{}", c); // Output: 剖
Go:
char := '\u5256'
fmt.Printf("%c\n", char) // Output: 剖
CSS:
/* CSS content property */
.element::before {
content: "\005256"; /* 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%96
MD5:
76f605cf2d6606a9e6928bb9f4e8660b
SHA1:
62691db02d857ecdb53a98e1e6fc604f007903d3
Base64:
5YmW