C:
char c = '\u5425';
printf("%c\n", c); // Output: 吥
JavaScript:
const char = '\u5425';
console.log(char); // Output: 吥
Java:
char c = '\u5425';
System.out.println(c); // Output: 吥
JSON:
{"text": "\u5425"} // Value: 吥
Python:
char = '\u5425'
print(char) # Output: 吥
Perl:
my $char = "\x{5425}";
print $char; # Output: 吥
PHP:
$char = "\x{5425}";
echo $char; // Output: 吥
Ruby:
char = "\u{5425}"
puts char # Output: 吥
Rust:
let c = '\u{5425}';
println!("{}", c); // Output: 吥
Go:
char := '\u5425'
fmt.Printf("%c\n", char) // Output: 吥
CSS:
/* CSS content property */
.element::before {
content: "\005425"; /* 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%90%A5
MD5:
a2b7c757e070989f7144a1f3b835a1c4
SHA1:
eadcbadaa4a70db46a3b55f7445680c824da9433
Base64:
5ZCl