C:
char c = '\u9524';
printf("%c\n", c); // Output: 锤
JavaScript:
const char = '\u9524';
console.log(char); // Output: 锤
Java:
char c = '\u9524';
System.out.println(c); // Output: 锤
JSON:
{"text": "\u9524"} // Value: 锤
Python:
char = '\u9524'
print(char) # Output: 锤
Perl:
my $char = "\x{9524}";
print $char; # Output: 锤
PHP:
$char = "\x{9524}";
echo $char; // Output: 锤
Ruby:
char = "\u{9524}"
puts char # Output: 锤
Rust:
let c = '\u{9524}';
println!("{}", c); // Output: 锤
Go:
char := '\u9524'
fmt.Printf("%c\n", char) // Output: 锤
CSS:
/* CSS content property */
.element::before {
content: "\009524"; /* 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%A4
MD5:
cb3b7f335b4fd917cb20a36660ef0a7c
SHA1:
92cc1402daf77f24fc91cf1f367d090abcfb7a36
Base64:
6ZSk