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