C:
char c = '\u5499';
printf("%c\n", c); // Output: 咙
JavaScript:
const char = '\u5499';
console.log(char); // Output: 咙
Java:
char c = '\u5499';
System.out.println(c); // Output: 咙
JSON:
{"text": "\u5499"} // Value: 咙
Python:
char = '\u5499'
print(char) # Output: 咙
Perl:
my $char = "\x{5499}";
print $char; # Output: 咙
PHP:
$char = "\x{5499}";
echo $char; // Output: 咙
Ruby:
char = "\u{5499}"
puts char # Output: 咙
Rust:
let c = '\u{5499}';
println!("{}", c); // Output: 咙
Go:
char := '\u5499'
fmt.Printf("%c\n", char) // Output: 咙
CSS:
/* CSS content property */
.element::before {
content: "\005499"; /* 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%99
MD5:
8a8bf40cefd611cdeb4bd675e01a937a
SHA1:
8d7f4bbbe89b47cbe32ee08ede17230d76e78241
Base64:
5ZKZ