C:
char c = '\u5940';
printf("%c\n", c); // Output: 奀
JavaScript:
const char = '\u5940';
console.log(char); // Output: 奀
Java:
char c = '\u5940';
System.out.println(c); // Output: 奀
JSON:
{"text": "\u5940"} // Value: 奀
Python:
char = '\u5940'
print(char) # Output: 奀
Perl:
my $char = "\x{5940}";
print $char; # Output: 奀
PHP:
$char = "\x{5940}";
echo $char; // Output: 奀
Ruby:
char = "\u{5940}"
puts char # Output: 奀
Rust:
let c = '\u{5940}';
println!("{}", c); // Output: 奀
Go:
char := '\u5940'
fmt.Printf("%c\n", char) // Output: 奀
CSS:
/* CSS content property */
.element::before {
content: "\005940"; /* 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%A5%80
MD5:
d656ff713d6d817101ddd1e0d6703905
SHA1:
89e3c3c8f1c5052a5f007a99326fb1a2c40e8c1f
Base64:
5aWA