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