C:
char c = '\u5429';
printf("%c\n", c); // Output: 吩
JavaScript:
const char = '\u5429';
console.log(char); // Output: 吩
Java:
char c = '\u5429';
System.out.println(c); // Output: 吩
JSON:
{"text": "\u5429"} // Value: 吩
Python:
char = '\u5429'
print(char) # Output: 吩
Perl:
my $char = "\x{5429}";
print $char; # Output: 吩
PHP:
$char = "\x{5429}";
echo $char; // Output: 吩
Ruby:
char = "\u{5429}"
puts char # Output: 吩
Rust:
let c = '\u{5429}';
println!("{}", c); // Output: 吩
Go:
char := '\u5429'
fmt.Printf("%c\n", char) // Output: 吩
CSS:
/* CSS content property */
.element::before {
content: "\005429"; /* 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%A9
MD5:
c0b230238fa6fd3f1ab0bbd94bf7b9b3
SHA1:
253c46149dbb505ffdb5085174e0869d1ac2e84f
Base64:
5ZCp