C:
char c = '\u5689';
printf("%c\n", c); // Output: 嚉
JavaScript:
const char = '\u5689';
console.log(char); // Output: 嚉
Java:
char c = '\u5689';
System.out.println(c); // Output: 嚉
JSON:
{"text": "\u5689"} // Value: 嚉
Python:
char = '\u5689'
print(char) # Output: 嚉
Perl:
my $char = "\x{5689}";
print $char; # Output: 嚉
PHP:
$char = "\x{5689}";
echo $char; // Output: 嚉
Ruby:
char = "\u{5689}"
puts char # Output: 嚉
Rust:
let c = '\u{5689}';
println!("{}", c); // Output: 嚉
Go:
char := '\u5689'
fmt.Printf("%c\n", char) // Output: 嚉
CSS:
/* CSS content property */
.element::before {
content: "\005689"; /* 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%9A%89
MD5:
326b5bcc1afffd2005026f1d6a65a15a
SHA1:
f0307ad69b4ee7fa0012527956f29d0728b346e6
Base64:
5ZqJ