C:
char c = '\u9528';
printf("%c\n", c); // Output: 锨
JavaScript:
const char = '\u9528';
console.log(char); // Output: 锨
Java:
char c = '\u9528';
System.out.println(c); // Output: 锨
JSON:
{"text": "\u9528"} // Value: 锨
Python:
char = '\u9528'
print(char) # Output: 锨
Perl:
my $char = "\x{9528}";
print $char; # Output: 锨
PHP:
$char = "\x{9528}";
echo $char; // Output: 锨
Ruby:
char = "\u{9528}"
puts char # Output: 锨
Rust:
let c = '\u{9528}';
println!("{}", c); // Output: 锨
Go:
char := '\u9528'
fmt.Printf("%c\n", char) // Output: 锨
CSS:
/* CSS content property */
.element::before {
content: "\009528"; /* 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=%E9%94%A8
MD5:
0dfa0f58ece17e784959e3ae3a51f145
SHA1:
65b0aed38edf3580f718e9992e24cfb81e13b2c4
Base64:
6ZSo