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