C:
char c = '\u5414';
printf("%c\n", c); // Output: 吔
JavaScript:
const char = '\u5414';
console.log(char); // Output: 吔
Java:
char c = '\u5414';
System.out.println(c); // Output: 吔
JSON:
{"text": "\u5414"} // Value: 吔
Python:
char = '\u5414'
print(char) # Output: 吔
Perl:
my $char = "\x{5414}";
print $char; # Output: 吔
PHP:
$char = "\x{5414}";
echo $char; // Output: 吔
Ruby:
char = "\u{5414}"
puts char # Output: 吔
Rust:
let c = '\u{5414}';
println!("{}", c); // Output: 吔
Go:
char := '\u5414'
fmt.Printf("%c\n", char) // Output: 吔
CSS:
/* CSS content property */
.element::before {
content: "\005414"; /* 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%94
MD5:
de7513ca0a29fce3277e8f952874c6c6
SHA1:
306bdc4bbafc94a74b7658ca0dbd3d7f5e7d0923
Base64:
5ZCU