C:
char c = '\u5598';
printf("%c\n", c); // Output: 喘
JavaScript:
const char = '\u5598';
console.log(char); // Output: 喘
Java:
char c = '\u5598';
System.out.println(c); // Output: 喘
JSON:
{"text": "\u5598"} // Value: 喘
Python:
char = '\u5598'
print(char) # Output: 喘
Perl:
my $char = "\x{5598}";
print $char; # Output: 喘
PHP:
$char = "\x{5598}";
echo $char; // Output: 喘
Ruby:
char = "\u{5598}"
puts char # Output: 喘
Rust:
let c = '\u{5598}';
println!("{}", c); // Output: 喘
Go:
char := '\u5598'
fmt.Printf("%c\n", char) // Output: 喘
CSS:
/* CSS content property */
.element::before {
content: "\005598"; /* 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%96%98
MD5:
632c067381523ef3bd5f0da91d988ec3
SHA1:
1ac22fa2e11c5c6e937350a01b17166b437adba8
Base64:
5ZaY