C:
char c = '\u5482';
printf("%c\n", c); // Output: 咂
JavaScript:
const char = '\u5482';
console.log(char); // Output: 咂
Java:
char c = '\u5482';
System.out.println(c); // Output: 咂
JSON:
{"text": "\u5482"} // Value: 咂
Python:
char = '\u5482'
print(char) # Output: 咂
Perl:
my $char = "\x{5482}";
print $char; # Output: 咂
PHP:
$char = "\x{5482}";
echo $char; // Output: 咂
Ruby:
char = "\u{5482}"
puts char # Output: 咂
Rust:
let c = '\u{5482}';
println!("{}", c); // Output: 咂
Go:
char := '\u5482'
fmt.Printf("%c\n", char) // Output: 咂
CSS:
/* CSS content property */
.element::before {
content: "\005482"; /* 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%82
MD5:
b04596e3f15e8570fd8d5264ef0b8cfd
SHA1:
7f4b3158ce73e0174d645c03bf89465338c978e3
Base64:
5ZKC