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