C:
char c = '\u5985';
printf("%c\n", c); // Output: 妅
JavaScript:
const char = '\u5985';
console.log(char); // Output: 妅
Java:
char c = '\u5985';
System.out.println(c); // Output: 妅
JSON:
{"text": "\u5985"} // Value: 妅
Python:
char = '\u5985'
print(char) # Output: 妅
Perl:
my $char = "\x{5985}";
print $char; # Output: 妅
PHP:
$char = "\x{5985}";
echo $char; // Output: 妅
Ruby:
char = "\u{5985}"
puts char # Output: 妅
Rust:
let c = '\u{5985}';
println!("{}", c); // Output: 妅
Go:
char := '\u5985'
fmt.Printf("%c\n", char) // Output: 妅
CSS:
/* CSS content property */
.element::before {
content: "\005985"; /* 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%85
MD5:
e148ea529f7c57016169b5a912c2599f
SHA1:
a6940daaf63d4cf90d159b935ac77ab30db29c6a
Base64:
5aaF