C:
char c = '\u5980';
printf("%c\n", c); // Output: 妀
JavaScript:
const char = '\u5980';
console.log(char); // Output: 妀
Java:
char c = '\u5980';
System.out.println(c); // Output: 妀
JSON:
{"text": "\u5980"} // Value: 妀
Python:
char = '\u5980'
print(char) # Output: 妀
Perl:
my $char = "\x{5980}";
print $char; # Output: 妀
PHP:
$char = "\x{5980}";
echo $char; // Output: 妀
Ruby:
char = "\u{5980}"
puts char # Output: 妀
Rust:
let c = '\u{5980}';
println!("{}", c); // Output: 妀
Go:
char := '\u5980'
fmt.Printf("%c\n", char) // Output: 妀
CSS:
/* CSS content property */
.element::before {
content: "\005980"; /* 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%80
MD5:
14a0a624acf4e3411fca9e290fc7172b
SHA1:
c2e1d99768b746c6ff7064d4e4a46f6628858461
Base64:
5aaA