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