C:
char c = '\u5640';
printf("%c\n", c); // Output: 噀
JavaScript:
const char = '\u5640';
console.log(char); // Output: 噀
Java:
char c = '\u5640';
System.out.println(c); // Output: 噀
JSON:
{"text": "\u5640"} // Value: 噀
Python:
char = '\u5640'
print(char) # Output: 噀
Perl:
my $char = "\x{5640}";
print $char; # Output: 噀
PHP:
$char = "\x{5640}";
echo $char; // Output: 噀
Ruby:
char = "\u{5640}"
puts char # Output: 噀
Rust:
let c = '\u{5640}';
println!("{}", c); // Output: 噀
Go:
char := '\u5640'
fmt.Printf("%c\n", char) // Output: 噀
CSS:
/* CSS content property */
.element::before {
content: "\005640"; /* 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=%E5%99%80
MD5:
6fa559adaf40f68475c3d5eb4fbc7104
SHA1:
43c8f251a6afb1e53c2292f91242a638fdcc9c3c
Base64:
5ZmA