C:
char c = '\u5498';
printf("%c\n", c); // Output: 咘
JavaScript:
const char = '\u5498';
console.log(char); // Output: 咘
Java:
char c = '\u5498';
System.out.println(c); // Output: 咘
JSON:
{"text": "\u5498"} // Value: 咘
Python:
char = '\u5498'
print(char) # Output: 咘
Perl:
my $char = "\x{5498}";
print $char; # Output: 咘
PHP:
$char = "\x{5498}";
echo $char; // Output: 咘
Ruby:
char = "\u{5498}"
puts char # Output: 咘
Rust:
let c = '\u{5498}';
println!("{}", c); // Output: 咘
Go:
char := '\u5498'
fmt.Printf("%c\n", char) // Output: 咘
CSS:
/* CSS content property */
.element::before {
content: "\005498"; /* 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%98
MD5:
800c46c9f2383b88bba82763e546f9e2
SHA1:
a89678d6855b6b02e6787da5ead27b53ef5b6279
Base64:
5ZKY