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