C:
char c = '\u54DA';
printf("%c\n", c); // Output: 哚
JavaScript:
const char = '\u54DA';
console.log(char); // Output: 哚
Java:
char c = '\u54DA';
System.out.println(c); // Output: 哚
JSON:
{"text": "\u54DA"} // Value: 哚
Python:
char = '\u54DA'
print(char) # Output: 哚
Perl:
my $char = "\x{54DA}";
print $char; # Output: 哚
PHP:
$char = "\x{54DA}";
echo $char; // Output: 哚
Ruby:
char = "\u{54DA}"
puts char # Output: 哚
Rust:
let c = '\u{54DA}';
println!("{}", c); // Output: 哚
Go:
char := '\u54DA'
fmt.Printf("%c\n", char) // Output: 哚
CSS:
/* CSS content property */
.element::before {
content: "\0054DA"; /* 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%93%9A
MD5:
89dcaaa5d915bab771ef18bf55984d82
SHA1:
016da9cae09339568ef613a79ee2c7d0620c5998
Base64:
5ZOa