C:
char c = '\u5590';
printf("%c\n", c); // Output: 喐
JavaScript:
const char = '\u5590';
console.log(char); // Output: 喐
Java:
char c = '\u5590';
System.out.println(c); // Output: 喐
JSON:
{"text": "\u5590"} // Value: 喐
Python:
char = '\u5590'
print(char) # Output: 喐
Perl:
my $char = "\x{5590}";
print $char; # Output: 喐
PHP:
$char = "\x{5590}";
echo $char; // Output: 喐
Ruby:
char = "\u{5590}"
puts char # Output: 喐
Rust:
let c = '\u{5590}';
println!("{}", c); // Output: 喐
Go:
char := '\u5590'
fmt.Printf("%c\n", char) // Output: 喐
CSS:
/* CSS content property */
.element::before {
content: "\005590"; /* 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%90
MD5:
c018f2f6d19b0497ed63b3a7219ef1da
SHA1:
a5347290d944361b293532afe9a3f72c128e5229
Base64:
5ZaQ