C:
char c = '\u5542';
printf("%c\n", c); // Output: 啂
JavaScript:
const char = '\u5542';
console.log(char); // Output: 啂
Java:
char c = '\u5542';
System.out.println(c); // Output: 啂
JSON:
{"text": "\u5542"} // Value: 啂
Python:
char = '\u5542'
print(char) # Output: 啂
Perl:
my $char = "\x{5542}";
print $char; # Output: 啂
PHP:
$char = "\x{5542}";
echo $char; // Output: 啂
Ruby:
char = "\u{5542}"
puts char # Output: 啂
Rust:
let c = '\u{5542}';
println!("{}", c); // Output: 啂
Go:
char := '\u5542'
fmt.Printf("%c\n", char) // Output: 啂
CSS:
/* CSS content property */
.element::before {
content: "\005542"; /* 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%82
MD5:
b1138fb4b917becb05bc5e7fc52dbee5
SHA1:
6af405cbd990582b5b2a26ce5adab83e15f29284
Base64:
5ZWC