C:
char c = '\u59BB';
printf("%c\n", c); // Output: 妻
JavaScript:
const char = '\u59BB';
console.log(char); // Output: 妻
Java:
char c = '\u59BB';
System.out.println(c); // Output: 妻
JSON:
{"text": "\u59BB"} // Value: 妻
Python:
char = '\u59BB'
print(char) # Output: 妻
Perl:
my $char = "\x{59BB}";
print $char; # Output: 妻
PHP:
$char = "\x{59BB}";
echo $char; // Output: 妻
Ruby:
char = "\u{59BB}"
puts char # Output: 妻
Rust:
let c = '\u{59BB}';
println!("{}", c); // Output: 妻
Go:
char := '\u59BB'
fmt.Printf("%c\n", char) // Output: 妻
CSS:
/* CSS content property */
.element::before {
content: "\0059BB"; /* 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%A6%BB
MD5:
7ffb4159987cc9bfddaea50b9dd8b779
SHA1:
a615e2a99a6fc90d5ede1a3fe098361e408e9d53
Base64:
5aa7