C:
char c = '\u5516';
printf("%c\n", c); // Output: 唖
JavaScript:
const char = '\u5516';
console.log(char); // Output: 唖
Java:
char c = '\u5516';
System.out.println(c); // Output: 唖
JSON:
{"text": "\u5516"} // Value: 唖
Python:
char = '\u5516'
print(char) # Output: 唖
Perl:
my $char = "\x{5516}";
print $char; # Output: 唖
PHP:
$char = "\x{5516}";
echo $char; // Output: 唖
Ruby:
char = "\u{5516}"
puts char # Output: 唖
Rust:
let c = '\u{5516}';
println!("{}", c); // Output: 唖
Go:
char := '\u5516'
fmt.Printf("%c\n", char) // Output: 唖
CSS:
/* CSS content property */
.element::before {
content: "\005516"; /* 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%94%96
MD5:
3d242f003f94734b2686d75e754c0757
SHA1:
295ef31c53c7b83b2ea6f3174846a770e963e3ef
Base64:
5ZSW