C:
char c = '\u5AC8';
printf("%c\n", c); // Output: 嫈
JavaScript:
const char = '\u5AC8';
console.log(char); // Output: 嫈
Java:
char c = '\u5AC8';
System.out.println(c); // Output: 嫈
JSON:
{"text": "\u5AC8"} // Value: 嫈
Python:
char = '\u5AC8'
print(char) # Output: 嫈
Perl:
my $char = "\x{5AC8}";
print $char; # Output: 嫈
PHP:
$char = "\x{5AC8}";
echo $char; // Output: 嫈
Ruby:
char = "\u{5AC8}"
puts char # Output: 嫈
Rust:
let c = '\u{5AC8}';
println!("{}", c); // Output: 嫈
Go:
char := '\u5AC8'
fmt.Printf("%c\n", char) // Output: 嫈
CSS:
/* CSS content property */
.element::before {
content: "\005AC8"; /* 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%88
MD5:
1e0a211a8c9443897468c8d6a5bccf86
SHA1:
488ed29b202dc6cd501875f9eb606d838e7f91f2
Base64:
5auI