C:
char c = '\u5922';
printf("%c\n", c); // Output: 夢
JavaScript:
const char = '\u5922';
console.log(char); // Output: 夢
Java:
char c = '\u5922';
System.out.println(c); // Output: 夢
JSON:
{"text": "\u5922"} // Value: 夢
Python:
char = '\u5922'
print(char) # Output: 夢
Perl:
my $char = "\x{5922}";
print $char; # Output: 夢
PHP:
$char = "\x{5922}";
echo $char; // Output: 夢
Ruby:
char = "\u{5922}"
puts char # Output: 夢
Rust:
let c = '\u{5922}';
println!("{}", c); // Output: 夢
Go:
char := '\u5922'
fmt.Printf("%c\n", char) // Output: 夢
CSS:
/* CSS content property */
.element::before {
content: "\005922"; /* 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%A4%A2
MD5:
6f7e368290eb763638035a0fe79cd269
SHA1:
ea6faabf56bde3f6adcf9d6af3e3e9fbc143ac0b
Base64:
5aSi