C:
char c = '\u5569';
printf("%c\n", c); // Output: 啩
JavaScript:
const char = '\u5569';
console.log(char); // Output: 啩
Java:
char c = '\u5569';
System.out.println(c); // Output: 啩
JSON:
{"text": "\u5569"} // Value: 啩
Python:
char = '\u5569'
print(char) # Output: 啩
Perl:
my $char = "\x{5569}";
print $char; # Output: 啩
PHP:
$char = "\x{5569}";
echo $char; // Output: 啩
Ruby:
char = "\u{5569}"
puts char # Output: 啩
Rust:
let c = '\u{5569}';
println!("{}", c); // Output: 啩
Go:
char := '\u5569'
fmt.Printf("%c\n", char) // Output: 啩
CSS:
/* CSS content property */
.element::before {
content: "\005569"; /* 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%A9
MD5:
e5d0e0829f830a6e4cb6b384389574b1
SHA1:
095dd303bfdf527f686d95f7fa5ce6c719c29ab2
Base64:
5ZWp