C:
char c = '\u5648';
printf("%c\n", c); // Output: 噈
JavaScript:
const char = '\u5648';
console.log(char); // Output: 噈
Java:
char c = '\u5648';
System.out.println(c); // Output: 噈
JSON:
{"text": "\u5648"} // Value: 噈
Python:
char = '\u5648'
print(char) # Output: 噈
Perl:
my $char = "\x{5648}";
print $char; # Output: 噈
PHP:
$char = "\x{5648}";
echo $char; // Output: 噈
Ruby:
char = "\u{5648}"
puts char # Output: 噈
Rust:
let c = '\u{5648}';
println!("{}", c); // Output: 噈
Go:
char := '\u5648'
fmt.Printf("%c\n", char) // Output: 噈
CSS:
/* CSS content property */
.element::before {
content: "\005648"; /* 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%88
MD5:
32cc1a77c310bd9bdaaf3c15cd551b65
SHA1:
4b6f820d376153a292e137c90c00ace620c09efb
Base64:
5ZmI