C:
char c = '\u5990';
printf("%c\n", c); // Output: 妐
JavaScript:
const char = '\u5990';
console.log(char); // Output: 妐
Java:
char c = '\u5990';
System.out.println(c); // Output: 妐
JSON:
{"text": "\u5990"} // Value: 妐
Python:
char = '\u5990'
print(char) # Output: 妐
Perl:
my $char = "\x{5990}";
print $char; # Output: 妐
PHP:
$char = "\x{5990}";
echo $char; // Output: 妐
Ruby:
char = "\u{5990}"
puts char # Output: 妐
Rust:
let c = '\u{5990}';
println!("{}", c); // Output: 妐
Go:
char := '\u5990'
fmt.Printf("%c\n", char) // Output: 妐
CSS:
/* CSS content property */
.element::before {
content: "\005990"; /* 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%90
MD5:
164268b9a722054afe0d670d6b003851
SHA1:
48a1be0292e56095376cd98bdfcc3f6695c914ae
Base64:
5aaQ