C:
char c = '\u5654';
printf("%c\n", c); // Output: 噔
JavaScript:
const char = '\u5654';
console.log(char); // Output: 噔
Java:
char c = '\u5654';
System.out.println(c); // Output: 噔
JSON:
{"text": "\u5654"} // Value: 噔
Python:
char = '\u5654'
print(char) # Output: 噔
Perl:
my $char = "\x{5654}";
print $char; # Output: 噔
PHP:
$char = "\x{5654}";
echo $char; // Output: 噔
Ruby:
char = "\u{5654}"
puts char # Output: 噔
Rust:
let c = '\u{5654}';
println!("{}", c); // Output: 噔
Go:
char := '\u5654'
fmt.Printf("%c\n", char) // Output: 噔
CSS:
/* CSS content property */
.element::before {
content: "\005654"; /* 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%94
MD5:
01073969c47b5a75d3968c72ea646d35
SHA1:
203d28fc513cdefaa7e4d422cc34ef93fc70df3e
Base64:
5ZmU