C:
char c = '\u6418';
printf("%c\n", c); // Output: 搘
JavaScript:
const char = '\u6418';
console.log(char); // Output: 搘
Java:
char c = '\u6418';
System.out.println(c); // Output: 搘
JSON:
{"text": "\u6418"} // Value: 搘
Python:
char = '\u6418'
print(char) # Output: 搘
Perl:
my $char = "\x{6418}";
print $char; # Output: 搘
PHP:
$char = "\x{6418}";
echo $char; // Output: 搘
Ruby:
char = "\u{6418}"
puts char # Output: 搘
Rust:
let c = '\u{6418}';
println!("{}", c); // Output: 搘
Go:
char := '\u6418'
fmt.Printf("%c\n", char) // Output: 搘
CSS:
/* CSS content property */
.element::before {
content: "\006418"; /* 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%98
MD5:
13e4bc7a049022b8449d45c01434bb90
SHA1:
0ae3c5217a40c3d69a72db2aa5a7e1db88fcef89
Base64:
5pCY