C:
char c = '\u5944';
printf("%c\n", c); // Output: 奄
JavaScript:
const char = '\u5944';
console.log(char); // Output: 奄
Java:
char c = '\u5944';
System.out.println(c); // Output: 奄
JSON:
{"text": "\u5944"} // Value: 奄
Python:
char = '\u5944'
print(char) # Output: 奄
Perl:
my $char = "\x{5944}";
print $char; # Output: 奄
PHP:
$char = "\x{5944}";
echo $char; // Output: 奄
Ruby:
char = "\u{5944}"
puts char # Output: 奄
Rust:
let c = '\u{5944}';
println!("{}", c); // Output: 奄
Go:
char := '\u5944'
fmt.Printf("%c\n", char) // Output: 奄
CSS:
/* CSS content property */
.element::before {
content: "\005944"; /* 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%84
MD5:
d69c9acbb5bfeb8f7210d14c01c242bf
SHA1:
8f9c2adcb4aaf8b7e5b14bc70d4b451ee53e5375
Base64:
5aWE