C:
char c = '\u5547';
printf("%c\n", c); // Output: 啇
JavaScript:
const char = '\u5547';
console.log(char); // Output: 啇
Java:
char c = '\u5547';
System.out.println(c); // Output: 啇
JSON:
{"text": "\u5547"} // Value: 啇
Python:
char = '\u5547'
print(char) # Output: 啇
Perl:
my $char = "\x{5547}";
print $char; # Output: 啇
PHP:
$char = "\x{5547}";
echo $char; // Output: 啇
Ruby:
char = "\u{5547}"
puts char # Output: 啇
Rust:
let c = '\u{5547}';
println!("{}", c); // Output: 啇
Go:
char := '\u5547'
fmt.Printf("%c\n", char) // Output: 啇
CSS:
/* CSS content property */
.element::before {
content: "\005547"; /* 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%95%87
MD5:
57c84219acea71f58d321eda1d445d82
SHA1:
04431967776f54f1c5b398e9918ebba29071e8c7
Base64:
5ZWH