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