C:
char c = '\u54F0';
printf("%c\n", c); // Output: 哰
JavaScript:
const char = '\u54F0';
console.log(char); // Output: 哰
Java:
char c = '\u54F0';
System.out.println(c); // Output: 哰
JSON:
{"text": "\u54F0"} // Value: 哰
Python:
char = '\u54F0'
print(char) # Output: 哰
Perl:
my $char = "\x{54F0}";
print $char; # Output: 哰
PHP:
$char = "\x{54F0}";
echo $char; // Output: 哰
Ruby:
char = "\u{54F0}"
puts char # Output: 哰
Rust:
let c = '\u{54F0}';
println!("{}", c); // Output: 哰
Go:
char := '\u54F0'
fmt.Printf("%c\n", char) // Output: 哰
CSS:
/* CSS content property */
.element::before {
content: "\0054F0"; /* 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%B0
MD5:
82964a308eb96d885ac7a6e23084a791
SHA1:
e81a543fa21c3adc2d4e7d5936b8f8e952e6ec9d
Base64:
5ZOw