C:
char c = '\u5961';
printf("%c\n", c); // Output: 奡
JavaScript:
const char = '\u5961';
console.log(char); // Output: 奡
Java:
char c = '\u5961';
System.out.println(c); // Output: 奡
JSON:
{"text": "\u5961"} // Value: 奡
Python:
char = '\u5961'
print(char) # Output: 奡
Perl:
my $char = "\x{5961}";
print $char; # Output: 奡
PHP:
$char = "\x{5961}";
echo $char; // Output: 奡
Ruby:
char = "\u{5961}"
puts char # Output: 奡
Rust:
let c = '\u{5961}';
println!("{}", c); // Output: 奡
Go:
char := '\u5961'
fmt.Printf("%c\n", char) // Output: 奡
CSS:
/* CSS content property */
.element::before {
content: "\005961"; /* 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%A1
MD5:
b28dc7550d00d5b6a52f6af454eac67a
SHA1:
ce32ef4f68896864cb2f6927a48bf9a7063e0466
Base64:
5aWh