C:
char c = '\u6428';
printf("%c\n", c); // Output: 搨
JavaScript:
const char = '\u6428';
console.log(char); // Output: 搨
Java:
char c = '\u6428';
System.out.println(c); // Output: 搨
JSON:
{"text": "\u6428"} // Value: 搨
Python:
char = '\u6428'
print(char) # Output: 搨
Perl:
my $char = "\x{6428}";
print $char; # Output: 搨
PHP:
$char = "\x{6428}";
echo $char; // Output: 搨
Ruby:
char = "\u{6428}"
puts char # Output: 搨
Rust:
let c = '\u{6428}';
println!("{}", c); // Output: 搨
Go:
char := '\u6428'
fmt.Printf("%c\n", char) // Output: 搨
CSS:
/* CSS content property */
.element::before {
content: "\006428"; /* 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%A8
MD5:
80cc57d2dad73112c9bba923aac4bc0d
SHA1:
2a723ba16a9e4ed561f203895b64701df730e8fe
Base64:
5pCo