C:
char c = '\u5593';
printf("%c\n", c); // Output: 喓
JavaScript:
const char = '\u5593';
console.log(char); // Output: 喓
Java:
char c = '\u5593';
System.out.println(c); // Output: 喓
JSON:
{"text": "\u5593"} // Value: 喓
Python:
char = '\u5593'
print(char) # Output: 喓
Perl:
my $char = "\x{5593}";
print $char; # Output: 喓
PHP:
$char = "\x{5593}";
echo $char; // Output: 喓
Ruby:
char = "\u{5593}"
puts char # Output: 喓
Rust:
let c = '\u{5593}';
println!("{}", c); // Output: 喓
Go:
char := '\u5593'
fmt.Printf("%c\n", char) // Output: 喓
CSS:
/* CSS content property */
.element::before {
content: "\005593"; /* 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%93
MD5:
85e1e379f4f31ac2db42258b49f8281e
SHA1:
cfb6eb66cd334c7e638334868128be566b777723
Base64:
5ZaT