C:
char c = '\u5545';
printf("%c\n", c); // Output: 啅
JavaScript:
const char = '\u5545';
console.log(char); // Output: 啅
Java:
char c = '\u5545';
System.out.println(c); // Output: 啅
JSON:
{"text": "\u5545"} // Value: 啅
Python:
char = '\u5545'
print(char) # Output: 啅
Perl:
my $char = "\x{5545}";
print $char; # Output: 啅
PHP:
$char = "\x{5545}";
echo $char; // Output: 啅
Ruby:
char = "\u{5545}"
puts char # Output: 啅
Rust:
let c = '\u{5545}';
println!("{}", c); // Output: 啅
Go:
char := '\u5545'
fmt.Printf("%c\n", char) // Output: 啅
CSS:
/* CSS content property */
.element::before {
content: "\005545"; /* 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%85
MD5:
0cee5a445e45466714a5295e2c951058
SHA1:
b380a6e438cb5f3b1535b13197c4960112c7318c
Base64:
5ZWF