C:
char c = '\u5628';
printf("%c\n", c); // Output: 嘨
JavaScript:
const char = '\u5628';
console.log(char); // Output: 嘨
Java:
char c = '\u5628';
System.out.println(c); // Output: 嘨
JSON:
{"text": "\u5628"} // Value: 嘨
Python:
char = '\u5628'
print(char) # Output: 嘨
Perl:
my $char = "\x{5628}";
print $char; # Output: 嘨
PHP:
$char = "\x{5628}";
echo $char; // Output: 嘨
Ruby:
char = "\u{5628}"
puts char # Output: 嘨
Rust:
let c = '\u{5628}';
println!("{}", c); // Output: 嘨
Go:
char := '\u5628'
fmt.Printf("%c\n", char) // Output: 嘨
CSS:
/* CSS content property */
.element::before {
content: "\005628"; /* 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%A8
MD5:
405b37578544df4a58faa1b8f487aa64
SHA1:
6e012f6fe115371249b9cff3f619a131ed0a6827
Base64:
5Zio