C:
char c = '\u5517';
printf("%c\n", c); // Output: 唗
JavaScript:
const char = '\u5517';
console.log(char); // Output: 唗
Java:
char c = '\u5517';
System.out.println(c); // Output: 唗
JSON:
{"text": "\u5517"} // Value: 唗
Python:
char = '\u5517'
print(char) # Output: 唗
Perl:
my $char = "\x{5517}";
print $char; # Output: 唗
PHP:
$char = "\x{5517}";
echo $char; // Output: 唗
Ruby:
char = "\u{5517}"
puts char # Output: 唗
Rust:
let c = '\u{5517}';
println!("{}", c); // Output: 唗
Go:
char := '\u5517'
fmt.Printf("%c\n", char) // Output: 唗
CSS:
/* CSS content property */
.element::before {
content: "\005517"; /* 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%94%97
MD5:
e01ea6645a181187c0dd0ad1d369229f
SHA1:
2ede7a5f7d6d5300192bdc06583656924c488c99
Base64:
5ZSX