C:
char c = '\u5407';
printf("%c\n", c); // Output: 吇
JavaScript:
const char = '\u5407';
console.log(char); // Output: 吇
Java:
char c = '\u5407';
System.out.println(c); // Output: 吇
JSON:
{"text": "\u5407"} // Value: 吇
Python:
char = '\u5407'
print(char) # Output: 吇
Perl:
my $char = "\x{5407}";
print $char; # Output: 吇
PHP:
$char = "\x{5407}";
echo $char; // Output: 吇
Ruby:
char = "\u{5407}"
puts char # Output: 吇
Rust:
let c = '\u{5407}';
println!("{}", c); // Output: 吇
Go:
char := '\u5407'
fmt.Printf("%c\n", char) // Output: 吇
CSS:
/* CSS content property */
.element::before {
content: "\005407"; /* 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%87
MD5:
ee96e30451ea66e37f0a4043e304db9b
SHA1:
2f203b9a363e8f578484df49a812d3e05f909e8a
Base64:
5ZCH