C:
char c = '\u55C9';
printf("%c\n", c); // Output: 嗉
JavaScript:
const char = '\u55C9';
console.log(char); // Output: 嗉
Java:
char c = '\u55C9';
System.out.println(c); // Output: 嗉
JSON:
{"text": "\u55C9"} // Value: 嗉
Python:
char = '\u55C9'
print(char) # Output: 嗉
Perl:
my $char = "\x{55C9}";
print $char; # Output: 嗉
PHP:
$char = "\x{55C9}";
echo $char; // Output: 嗉
Ruby:
char = "\u{55C9}"
puts char # Output: 嗉
Rust:
let c = '\u{55C9}';
println!("{}", c); // Output: 嗉
Go:
char := '\u55C9'
fmt.Printf("%c\n", char) // Output: 嗉
CSS:
/* CSS content property */
.element::before {
content: "\0055C9"; /* 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%97%89
MD5:
80958da42e9d59704f0a246520b9c989
SHA1:
5f2fffdd333e5a39db4dba280fdedcd7736c1c96
Base64:
5ZeJ