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