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