C:
char c = '\u5413';
printf("%c\n", c); // Output: 吓
JavaScript:
const char = '\u5413';
console.log(char); // Output: 吓
Java:
char c = '\u5413';
System.out.println(c); // Output: 吓
JSON:
{"text": "\u5413"} // Value: 吓
Python:
char = '\u5413'
print(char) # Output: 吓
Perl:
my $char = "\x{5413}";
print $char; # Output: 吓
PHP:
$char = "\x{5413}";
echo $char; // Output: 吓
Ruby:
char = "\u{5413}"
puts char # Output: 吓
Rust:
let c = '\u{5413}';
println!("{}", c); // Output: 吓
Go:
char := '\u5413'
fmt.Printf("%c\n", char) // Output: 吓
CSS:
/* CSS content property */
.element::before {
content: "\005413"; /* 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%93
MD5:
17a6c6e6971ed5e08c9f773a09c3aa27
SHA1:
65264412990bcf8a173f6b15c5eac9cce2e7c7b8
Base64:
5ZCT