C:
char c = '\u599E';
printf("%c\n", c); // Output: 妞
JavaScript:
const char = '\u599E';
console.log(char); // Output: 妞
Java:
char c = '\u599E';
System.out.println(c); // Output: 妞
JSON:
{"text": "\u599E"} // Value: 妞
Python:
char = '\u599E'
print(char) # Output: 妞
Perl:
my $char = "\x{599E}";
print $char; # Output: 妞
PHP:
$char = "\x{599E}";
echo $char; // Output: 妞
Ruby:
char = "\u{599E}"
puts char # Output: 妞
Rust:
let c = '\u{599E}';
println!("{}", c); // Output: 妞
Go:
char := '\u599E'
fmt.Printf("%c\n", char) // Output: 妞
CSS:
/* CSS content property */
.element::before {
content: "\00599E"; /* 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%9E
MD5:
84371842fcffd66c36de8ab331953c21
SHA1:
b0ea3c42f2de2def89ed0b12de94748148433b19
Base64:
5aae