C:
char c = '\u5688';
printf("%c\n", c); // Output: 嚈
JavaScript:
const char = '\u5688';
console.log(char); // Output: 嚈
Java:
char c = '\u5688';
System.out.println(c); // Output: 嚈
JSON:
{"text": "\u5688"} // Value: 嚈
Python:
char = '\u5688'
print(char) # Output: 嚈
Perl:
my $char = "\x{5688}";
print $char; # Output: 嚈
PHP:
$char = "\x{5688}";
echo $char; // Output: 嚈
Ruby:
char = "\u{5688}"
puts char # Output: 嚈
Rust:
let c = '\u{5688}';
println!("{}", c); // Output: 嚈
Go:
char := '\u5688'
fmt.Printf("%c\n", char) // Output: 嚈
CSS:
/* CSS content property */
.element::before {
content: "\005688"; /* 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%88
MD5:
1fa9c51d7be57edb0aca6963b575a068
SHA1:
ed008b3c2d36cc6902b3bdc0a28d713e760b696e
Base64:
5ZqI