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