C:
char c = '\u6401';
printf("%c\n", c); // Output: 搁
JavaScript:
const char = '\u6401';
console.log(char); // Output: 搁
Java:
char c = '\u6401';
System.out.println(c); // Output: 搁
JSON:
{"text": "\u6401"} // Value: 搁
Python:
char = '\u6401'
print(char) # Output: 搁
Perl:
my $char = "\x{6401}";
print $char; # Output: 搁
PHP:
$char = "\x{6401}";
echo $char; // Output: 搁
Ruby:
char = "\u{6401}"
puts char # Output: 搁
Rust:
let c = '\u{6401}';
println!("{}", c); // Output: 搁
Go:
char := '\u6401'
fmt.Printf("%c\n", char) // Output: 搁
CSS:
/* CSS content property */
.element::before {
content: "\006401"; /* 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%81
MD5:
e2eff293658e73c2b82dc6528e03986e
SHA1:
9d90d985e635c0d00c71bd2788833a3af55da8c0
Base64:
5pCB