C:
char c = '\u6409';
printf("%c\n", c); // Output: 搉
JavaScript:
const char = '\u6409';
console.log(char); // Output: 搉
Java:
char c = '\u6409';
System.out.println(c); // Output: 搉
JSON:
{"text": "\u6409"} // Value: 搉
Python:
char = '\u6409'
print(char) # Output: 搉
Perl:
my $char = "\x{6409}";
print $char; # Output: 搉
PHP:
$char = "\x{6409}";
echo $char; // Output: 搉
Ruby:
char = "\u{6409}"
puts char # Output: 搉
Rust:
let c = '\u{6409}';
println!("{}", c); // Output: 搉
Go:
char := '\u6409'
fmt.Printf("%c\n", char) // Output: 搉
CSS:
/* CSS content property */
.element::before {
content: "\006409"; /* 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%89
MD5:
da084bf04ae14bae9689d9112390df39
SHA1:
f674cdbd081b5a01224a42fd9a7de84387fb7537
Base64:
5pCJ