C:
char c = '\u5553';
printf("%c\n", c); // Output: 啓
JavaScript:
const char = '\u5553';
console.log(char); // Output: 啓
Java:
char c = '\u5553';
System.out.println(c); // Output: 啓
JSON:
{"text": "\u5553"} // Value: 啓
Python:
char = '\u5553'
print(char) # Output: 啓
Perl:
my $char = "\x{5553}";
print $char; # Output: 啓
PHP:
$char = "\x{5553}";
echo $char; // Output: 啓
Ruby:
char = "\u{5553}"
puts char # Output: 啓
Rust:
let c = '\u{5553}';
println!("{}", c); // Output: 啓
Go:
char := '\u5553'
fmt.Printf("%c\n", char) // Output: 啓
CSS:
/* CSS content property */
.element::before {
content: "\005553"; /* 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%93
MD5:
7b2e29492745f50b1ac76d381734b4a5
SHA1:
a729afa5dd5513498e3e300d5f937fade025cb3e
Base64:
5ZWT