C:
char c = '\u5601';
printf("%c\n", c); // Output: 嘁
JavaScript:
const char = '\u5601';
console.log(char); // Output: 嘁
Java:
char c = '\u5601';
System.out.println(c); // Output: 嘁
JSON:
{"text": "\u5601"} // Value: 嘁
Python:
char = '\u5601'
print(char) # Output: 嘁
Perl:
my $char = "\x{5601}";
print $char; # Output: 嘁
PHP:
$char = "\x{5601}";
echo $char; // Output: 嘁
Ruby:
char = "\u{5601}"
puts char # Output: 嘁
Rust:
let c = '\u{5601}';
println!("{}", c); // Output: 嘁
Go:
char := '\u5601'
fmt.Printf("%c\n", char) // Output: 嘁
CSS:
/* CSS content property */
.element::before {
content: "\005601"; /* 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%98%81
MD5:
087fde2c3a375ed1fce9b6c30d8129e0
SHA1:
d5d3d07fe50aff5c289c5d59a014116cde39cd66
Base64:
5ZiB