C:
char c = '\u5AE9';
printf("%c\n", c); // Output: 嫩
JavaScript:
const char = '\u5AE9';
console.log(char); // Output: 嫩
Java:
char c = '\u5AE9';
System.out.println(c); // Output: 嫩
JSON:
{"text": "\u5AE9"} // Value: 嫩
Python:
char = '\u5AE9'
print(char) # Output: 嫩
Perl:
my $char = "\x{5AE9}";
print $char; # Output: 嫩
PHP:
$char = "\x{5AE9}";
echo $char; // Output: 嫩
Ruby:
char = "\u{5AE9}"
puts char # Output: 嫩
Rust:
let c = '\u{5AE9}';
println!("{}", c); // Output: 嫩
Go:
char := '\u5AE9'
fmt.Printf("%c\n", char) // Output: 嫩
CSS:
/* CSS content property */
.element::before {
content: "\005AE9"; /* 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%AB%A9
MD5:
9bd81d611d100dfe8c4625e31622a935
SHA1:
5b1a1c631428308fd3cf137ad9bfd4a65bf711ad
Base64:
5aup