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