C:
char c = '\u5611';
printf("%c\n", c); // Output: 嘑
JavaScript:
const char = '\u5611';
console.log(char); // Output: 嘑
Java:
char c = '\u5611';
System.out.println(c); // Output: 嘑
JSON:
{"text": "\u5611"} // Value: 嘑
Python:
char = '\u5611'
print(char) # Output: 嘑
Perl:
my $char = "\x{5611}";
print $char; # Output: 嘑
PHP:
$char = "\x{5611}";
echo $char; // Output: 嘑
Ruby:
char = "\u{5611}"
puts char # Output: 嘑
Rust:
let c = '\u{5611}';
println!("{}", c); // Output: 嘑
Go:
char := '\u5611'
fmt.Printf("%c\n", char) // Output: 嘑
CSS:
/* CSS content property */
.element::before {
content: "\005611"; /* 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%91
MD5:
f6361b6b98552c5473cb35aa82a40e6d
SHA1:
2c3e6aed98020263ea4e87aaf7d2a8504ba540b7
Base64:
5ZiR