C:
char c = '\u560B';
printf("%c\n", c); // Output: 嘋
JavaScript:
const char = '\u560B';
console.log(char); // Output: 嘋
Java:
char c = '\u560B';
System.out.println(c); // Output: 嘋
JSON:
{"text": "\u560B"} // Value: 嘋
Python:
char = '\u560B'
print(char) # Output: 嘋
Perl:
my $char = "\x{560B}";
print $char; # Output: 嘋
PHP:
$char = "\x{560B}";
echo $char; // Output: 嘋
Ruby:
char = "\u{560B}"
puts char # Output: 嘋
Rust:
let c = '\u{560B}';
println!("{}", c); // Output: 嘋
Go:
char := '\u560B'
fmt.Printf("%c\n", char) // Output: 嘋
CSS:
/* CSS content property */
.element::before {
content: "\00560B"; /* 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%8B
MD5:
a73adf3ff9e28bd110d4f06278e79a1d
SHA1:
22fe4872b62f37c9f2779c1dd46b0b06ccdf1778
Base64:
5ZiL