C:
char c = '\u9504';
printf("%c\n", c); // Output: 锄
JavaScript:
const char = '\u9504';
console.log(char); // Output: 锄
Java:
char c = '\u9504';
System.out.println(c); // Output: 锄
JSON:
{"text": "\u9504"} // Value: 锄
Python:
char = '\u9504'
print(char) # Output: 锄
Perl:
my $char = "\x{9504}";
print $char; # Output: 锄
PHP:
$char = "\x{9504}";
echo $char; // Output: 锄
Ruby:
char = "\u{9504}"
puts char # Output: 锄
Rust:
let c = '\u{9504}';
println!("{}", c); // Output: 锄
Go:
char := '\u9504'
fmt.Printf("%c\n", char) // Output: 锄
CSS:
/* CSS content property */
.element::before {
content: "\009504"; /* 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%84
MD5:
249ec826cb42e421e0ee2a65f3125f4e
SHA1:
8a308e0d5e92543b44256603bdf835d9bfa86528
Base64:
6ZSE