C:
char c = '\u5449';
printf("%c\n", c); // Output: 呉
JavaScript:
const char = '\u5449';
console.log(char); // Output: 呉
Java:
char c = '\u5449';
System.out.println(c); // Output: 呉
JSON:
{"text": "\u5449"} // Value: 呉
Python:
char = '\u5449'
print(char) # Output: 呉
Perl:
my $char = "\x{5449}";
print $char; # Output: 呉
PHP:
$char = "\x{5449}";
echo $char; // Output: 呉
Ruby:
char = "\u{5449}"
puts char # Output: 呉
Rust:
let c = '\u{5449}';
println!("{}", c); // Output: 呉
Go:
char := '\u5449'
fmt.Printf("%c\n", char) // Output: 呉
CSS:
/* CSS content property */
.element::before {
content: "\005449"; /* 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%91%89
MD5:
eb4395e1fe11df91f158051d81ebd5a2
SHA1:
05940f3150d7d1cf7cedab279d827ed1bb13f693
Base64:
5ZGJ