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