C:
char c = '\u5421';
printf("%c\n", c); // Output: 吡
JavaScript:
const char = '\u5421';
console.log(char); // Output: 吡
Java:
char c = '\u5421';
System.out.println(c); // Output: 吡
JSON:
{"text": "\u5421"} // Value: 吡
Python:
char = '\u5421'
print(char) # Output: 吡
Perl:
my $char = "\x{5421}";
print $char; # Output: 吡
PHP:
$char = "\x{5421}";
echo $char; // Output: 吡
Ruby:
char = "\u{5421}"
puts char # Output: 吡
Rust:
let c = '\u{5421}';
println!("{}", c); // Output: 吡
Go:
char := '\u5421'
fmt.Printf("%c\n", char) // Output: 吡
CSS:
/* CSS content property */
.element::before {
content: "\005421"; /* 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%A1
MD5:
2c5d8548cca676bf5dbee40f3623eb50
SHA1:
83fa40af72eb213959a81b0f0df06a692a09d0d4
Base64:
5ZCh