C:
char c = '\u6408';
printf("%c\n", c); // Output: 搈
JavaScript:
const char = '\u6408';
console.log(char); // Output: 搈
Java:
char c = '\u6408';
System.out.println(c); // Output: 搈
JSON:
{"text": "\u6408"} // Value: 搈
Python:
char = '\u6408'
print(char) # Output: 搈
Perl:
my $char = "\x{6408}";
print $char; # Output: 搈
PHP:
$char = "\x{6408}";
echo $char; // Output: 搈
Ruby:
char = "\u{6408}"
puts char # Output: 搈
Rust:
let c = '\u{6408}';
println!("{}", c); // Output: 搈
Go:
char := '\u6408'
fmt.Printf("%c\n", char) // Output: 搈
CSS:
/* CSS content property */
.element::before {
content: "\006408"; /* 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%88
MD5:
3c4239b765a20900e14b36593df8080e
SHA1:
7e0854ee25a29dc4d5c97a131608ae392935f5b3
Base64:
5pCI