C:
char c = '\u6425';
printf("%c\n", c); // Output: 搥
JavaScript:
const char = '\u6425';
console.log(char); // Output: 搥
Java:
char c = '\u6425';
System.out.println(c); // Output: 搥
JSON:
{"text": "\u6425"} // Value: 搥
Python:
char = '\u6425'
print(char) # Output: 搥
Perl:
my $char = "\x{6425}";
print $char; # Output: 搥
PHP:
$char = "\x{6425}";
echo $char; // Output: 搥
Ruby:
char = "\u{6425}"
puts char # Output: 搥
Rust:
let c = '\u{6425}';
println!("{}", c); // Output: 搥
Go:
char := '\u6425'
fmt.Printf("%c\n", char) // Output: 搥
CSS:
/* CSS content property */
.element::before {
content: "\006425"; /* 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%90%A5
MD5:
6383760eb818bd385da2f13d029da322
SHA1:
38affa2d81aa5a72381168265dbd3dc0cbf4c2de
Base64:
5pCl