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