C:
char c = '\u5467';
printf("%c\n", c); // Output: 呧
JavaScript:
const char = '\u5467';
console.log(char); // Output: 呧
Java:
char c = '\u5467';
System.out.println(c); // Output: 呧
JSON:
{"text": "\u5467"} // Value: 呧
Python:
char = '\u5467'
print(char) # Output: 呧
Perl:
my $char = "\x{5467}";
print $char; # Output: 呧
PHP:
$char = "\x{5467}";
echo $char; // Output: 呧
Ruby:
char = "\u{5467}"
puts char # Output: 呧
Rust:
let c = '\u{5467}';
println!("{}", c); // Output: 呧
Go:
char := '\u5467'
fmt.Printf("%c\n", char) // Output: 呧
CSS:
/* CSS content property */
.element::before {
content: "\005467"; /* 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%91%A7
MD5:
ec020f920653d3431e6bcc2a9191ba64
SHA1:
928182869e502fc37c17ea9f7ac77fe526412120
Base64:
5ZGn