C:
char c = '\u6417';
printf("%c\n", c); // Output: 搗
JavaScript:
const char = '\u6417';
console.log(char); // Output: 搗
Java:
char c = '\u6417';
System.out.println(c); // Output: 搗
JSON:
{"text": "\u6417"} // Value: 搗
Python:
char = '\u6417'
print(char) # Output: 搗
Perl:
my $char = "\x{6417}";
print $char; # Output: 搗
PHP:
$char = "\x{6417}";
echo $char; // Output: 搗
Ruby:
char = "\u{6417}"
puts char # Output: 搗
Rust:
let c = '\u{6417}';
println!("{}", c); // Output: 搗
Go:
char := '\u6417'
fmt.Printf("%c\n", char) // Output: 搗
CSS:
/* CSS content property */
.element::before {
content: "\006417"; /* 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%97
MD5:
095745686750880f666e4de30dbfeb44
SHA1:
1d08e477d7fe4375b479732c5dcb5d9a941b0206
Base64:
5pCX