C:
char c = '\u5600';
printf("%c\n", c); // Output: 嘀
JavaScript:
const char = '\u5600';
console.log(char); // Output: 嘀
Java:
char c = '\u5600';
System.out.println(c); // Output: 嘀
JSON:
{"text": "\u5600"} // Value: 嘀
Python:
char = '\u5600'
print(char) # Output: 嘀
Perl:
my $char = "\x{5600}";
print $char; # Output: 嘀
PHP:
$char = "\x{5600}";
echo $char; // Output: 嘀
Ruby:
char = "\u{5600}"
puts char # Output: 嘀
Rust:
let c = '\u{5600}';
println!("{}", c); // Output: 嘀
Go:
char := '\u5600'
fmt.Printf("%c\n", char) // Output: 嘀
CSS:
/* CSS content property */
.element::before {
content: "\005600"; /* 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%80
MD5:
7704f41edb77f020a313ca459ac7c4f8
SHA1:
90eec102f544656745d0bafd63f72c5cdf880038
Base64:
5ZiA