C:
char c = '\u5423';
printf("%c\n", c); // Output: 吣
JavaScript:
const char = '\u5423';
console.log(char); // Output: 吣
Java:
char c = '\u5423';
System.out.println(c); // Output: 吣
JSON:
{"text": "\u5423"} // Value: 吣
Python:
char = '\u5423'
print(char) # Output: 吣
Perl:
my $char = "\x{5423}";
print $char; # Output: 吣
PHP:
$char = "\x{5423}";
echo $char; // Output: 吣
Ruby:
char = "\u{5423}"
puts char # Output: 吣
Rust:
let c = '\u{5423}';
println!("{}", c); // Output: 吣
Go:
char := '\u5423'
fmt.Printf("%c\n", char) // Output: 吣
CSS:
/* CSS content property */
.element::before {
content: "\005423"; /* 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%90%A3
MD5:
45bcd37ee0a52e65c0e12922c54ca01e
SHA1:
5ac19d76b63049fc255ca64d5b92daa8205d3366
Base64:
5ZCj