C:
char c = '\u5265';
printf("%c\n", c); // Output: 剥
JavaScript:
const char = '\u5265';
console.log(char); // Output: 剥
Java:
char c = '\u5265';
System.out.println(c); // Output: 剥
JSON:
{"text": "\u5265"} // Value: 剥
Python:
char = '\u5265'
print(char) # Output: 剥
Perl:
my $char = "\x{5265}";
print $char; # Output: 剥
PHP:
$char = "\x{5265}";
echo $char; // Output: 剥
Ruby:
char = "\u{5265}"
puts char # Output: 剥
Rust:
let c = '\u{5265}';
println!("{}", c); // Output: 剥
Go:
char := '\u5265'
fmt.Printf("%c\n", char) // Output: 剥
CSS:
/* CSS content property */
.element::before {
content: "\005265"; /* 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%A5
MD5:
1d9c79a0d3693c9255c73349a0b05499
SHA1:
5d1a39d1d3d5c6eb6145a5f638daab707be2a811
Base64:
5Yml