C:
char c = '\u5597';
printf("%c\n", c); // Output: 喗
JavaScript:
const char = '\u5597';
console.log(char); // Output: 喗
Java:
char c = '\u5597';
System.out.println(c); // Output: 喗
JSON:
{"text": "\u5597"} // Value: 喗
Python:
char = '\u5597'
print(char) # Output: 喗
Perl:
my $char = "\x{5597}";
print $char; # Output: 喗
PHP:
$char = "\x{5597}";
echo $char; // Output: 喗
Ruby:
char = "\u{5597}"
puts char # Output: 喗
Rust:
let c = '\u{5597}';
println!("{}", c); // Output: 喗
Go:
char := '\u5597'
fmt.Printf("%c\n", char) // Output: 喗
CSS:
/* CSS content property */
.element::before {
content: "\005597"; /* 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%97
MD5:
4856c0145cdc342a0af1aa6b154aad6b
SHA1:
5844ec866408d0d521e92ce671d18eff7a49a991
Base64:
5ZaX