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