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