C:
char c = '\u624B';
printf("%c\n", c); // Output: 手
JavaScript:
const char = '\u624B';
console.log(char); // Output: 手
Java:
char c = '\u624B';
System.out.println(c); // Output: 手
JSON:
{"text": "\u624B"} // Value: 手
Python:
char = '\u624B'
print(char) # Output: 手
Perl:
my $char = "\x{624B}";
print $char; # Output: 手
PHP:
$char = "\x{624B}";
echo $char; // Output: 手
Ruby:
char = "\u{624B}"
puts char # Output: 手
Rust:
let c = '\u{624B}';
println!("{}", c); // Output: 手
Go:
char := '\u624B'
fmt.Printf("%c\n", char) // Output: 手
CSS:
/* CSS content property */
.element::before {
content: "\00624B"; /* 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=%E6%89%8B
MD5:
3c7d183f1b71f6dde829c8ff17289f4b
SHA1:
c08a56997a213be6ddd1039b6232fe05403de514
Base64:
5omL